diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-17 12:13:38 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-17 12:13:38 -0400 |
commit | 6231b161b92d28bdb6657cdd1f7d11436e6b132d (patch) | |
tree | f5e4855b709195a920acedaed0fcfdfe74ad8596 /tests/unit/draggable | |
parent | 45797b9b4166a4d2e883cea9712e075bb484e337 (diff) | |
download | jquery-ui-6231b161b92d28bdb6657cdd1f7d11436e6b132d.tar.gz jquery-ui-6231b161b92d28bdb6657cdd1f7d11436e6b132d.zip |
Tests: Fix AMD loading in IE8
It appears that we must load require.js via a standard script tag in order
for it to work properly in IE8.
Diffstat (limited to 'tests/unit/draggable')
-rw-r--r-- | tests/unit/draggable/draggable.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/draggable/draggable.html b/tests/unit/draggable/draggable.html index 7ac6db388..0971b2325 100644 --- a/tests/unit/draggable/draggable.html +++ b/tests/unit/draggable/draggable.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <title>jQuery UI Draggable Test Suite</title> + <script src="../../../external/requirejs/require.js"></script> <script src="../../lib/css.js" data-modules="core"></script> <script src="../../lib/bootstrap.js" data-widget="draggable"></script> <style> |