diff options
author | Filipp Lepalaan <f@230.to> | 2014-02-20 12:44:49 +0200 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2014-02-20 12:44:49 +0200 |
commit | 3321241b61766045a68a3d607b67e11a95014e87 (patch) | |
tree | d13ce50a7c46f986f403733e9922e766665e7d2b /apps/it/static/js/ui/tests/unit/all.html | |
parent | 75ad7e4bd7d69243e7e5281c2642f00478fb072d (diff) | |
download | pudding-3321241b61766045a68a3d607b67e11a95014e87.tar.gz pudding-3321241b61766045a68a3d607b67e11a95014e87.tar.bz2 pudding-3321241b61766045a68a3d607b67e11a95014e87.zip |
Require logins, removed jquery UI
Diffstat (limited to 'apps/it/static/js/ui/tests/unit/all.html')
-rw-r--r-- | apps/it/static/js/ui/tests/unit/all.html | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/apps/it/static/js/ui/tests/unit/all.html b/apps/it/static/js/ui/tests/unit/all.html deleted file mode 100644 index a05deb1..0000000 --- a/apps/it/static/js/ui/tests/unit/all.html +++ /dev/null @@ -1,70 +0,0 @@ -<!doctype html> -<html lang="en"> -<head> - <meta charset="utf-8"> - <title>jQuery UI Test Suite</title> - - <script src="../../jquery-1.10.2.js"></script> - - <link rel="stylesheet" href="../../external/qunit.css"> - <link rel="stylesheet" href="qunit-composite.css"> - <script src="../../external/qunit.js"></script> - <script src="qunit-composite.js"></script> - - <script> - (function() { - - var params = [], - suites = [ - "accordion/accordion.html", - "autocomplete/autocomplete.html", - "button/button.html", - "core/core.html", - "datepicker/datepicker.html", - "dialog/dialog.html", - "dialog/dialog_deprecated.html", - "draggable/draggable.html", - "droppable/droppable.html", - "effects/effects.html", - "menu/menu.html", - "position/position.html", - "progressbar/progressbar.html", - "resizable/resizable.html", - "selectable/selectable.html", - "slider/slider.html", - "sortable/sortable.html", - "spinner/spinner.html", - "tabs/tabs.html", - "tooltip/tooltip.html", - "widget/widget.html" - ]; - - $.each( QUnit.urlParams, function( key, value ) { - if ( key === "filter" ) { - return; - } - params.push( encodeURIComponent( key ) + "=" + encodeURIComponent( value ) ); - }); - if ( params.length ) { - params = "?" + params.join( "&" ); - suites = $.map( suites, function( suite ) { - return suite + params; - }); - } - QUnit.testSuites( suites ); - - }()); - </script> -</head> -<body> - -<h1 id="qunit-header">jQuery UI Test Suite</h1> -<h2 id="qunit-banner"></h2> -<div id="qunit-testrunner-toolbar"></div> -<h2 id="qunit-userAgent"></h2> -<ol id="qunit-tests"></ol> -<div id="qunit-fixture"> - -</div> -</body> -</html> |