diff options
author | CruiseDevice | 2019-01-11 16:43:46 +0530 |
---|---|---|
committer | CruiseDevice | 2019-01-30 16:08:30 +0530 |
commit | 820dcf515c56cde6c3dd3280d8ae26e2a9368e56 (patch) | |
tree | 1397610b871e0a10b1c906b205d5423b9e7f0a35 /yaksh/templates | |
parent | cedceac0c7b64e2116b5cfd5ec9461fdff98842c (diff) | |
download | online_test-820dcf515c56cde6c3dd3280d8ae26e2a9368e56.tar.gz online_test-820dcf515c56cde6c3dd3280d8ae26e2a9368e56.tar.bz2 online_test-820dcf515c56cde6c3dd3280d8ae26e2a9368e56.zip |
Fixes Embed video link issue
- Fixes Embed video link issue in LessonForm of Add New Lesson.
- It breaks because of compatibility issues between jQuery 3.3.1 and jQuery UI 1.9.1 .
Using jQuery UI with the jQuery Migrate plugin fixes this issue.
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/yaksh/add_lesson.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yaksh/templates/yaksh/add_lesson.html b/yaksh/templates/yaksh/add_lesson.html index 0e1b456..6d6af91 100644 --- a/yaksh/templates/yaksh/add_lesson.html +++ b/yaksh/templates/yaksh/add_lesson.html @@ -6,6 +6,7 @@ {% block script %} <script src="{{ URL_ROOT }}/static/yaksh/js/lesson.js"></script> <script src="{{ URL_ROOT }}/static/yaksh/js/jquery-ui.js"></script> +<script src="{{URL_ROOT}}/static/yaksh/js/jquery-migrate-3.0.0.min.js"></script> {% endblock %} {% block css %} |