forked from DecksterTeam/gridster.js
-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'ducksboard/bug-493-jquery-no-global-fail'
* ducksboard/bug-493-jquery-no-global-fail: Fix for bug ducksboard#493 including unit tests to prove.
- Loading branch information
Showing
8 changed files
with
153 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
//Based on https://github.com/jonnyreeves/qunit-require | ||
/* global require */ | ||
"use strict"; | ||
require.config({ | ||
//set the baseUrl to the src dir so that gridster | ||
//AMD modules can be found. | ||
baseUrl: '../src/', | ||
paths: { | ||
'QUnit': '../libs/qunit/qunit/qunit', | ||
'jquery': '../libs/jquery/jquery', | ||
'gridster': 'jquery.gridster' | ||
}, | ||
map: { | ||
// '*' means all modules will get 'jquery-private' | ||
// for their 'jquery' dependency. | ||
'*': { 'jquery': '../test/jquery-private' }, | ||
|
||
// 'jquery-private' wants the real jQuery module | ||
// though. If this line was not here, there would | ||
// be an unresolvable cyclic dependency. | ||
'../test/jquery-private': { 'jquery': 'jquery' } | ||
}, | ||
shim: { | ||
'QUnit': { | ||
exports: 'QUnit', | ||
init: function() { | ||
QUnit.config.autoload = false; | ||
QUnit.config.autostart = false; | ||
} | ||
} | ||
} | ||
}); | ||
/* | ||
Load all of our require'd files | ||
We have to load all of the gridster jquery.* modules so | ||
that they are defined for when gridster needs them. | ||
Lastly, load the testsuite which defines some tests. | ||
*/ | ||
require([ | ||
'QUnit', | ||
'utils', | ||
'jquery.coords', | ||
'jquery.collision', | ||
'jquery.draggable', | ||
'../test/testsuite' | ||
//Require'd files are passed as args, but we don't use them. | ||
], function(QUnit/*, utils, coords, collision, draggable, testsuite*/) { | ||
QUnit.load(); | ||
QUnit.start(); | ||
} | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
define(['jquery'], function (jq) { | ||
return jq.noConflict( true ); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>gridster.js AMD Test Suite</title> | ||
|
||
<link rel="stylesheet" type="text/css" href="../dist/jquery.gridster.css"> | ||
|
||
<link rel="stylesheet" href="../libs/qunit/qunit/qunit.css" media="screen"> | ||
<!-- Load requirejs which will load amd-main.js and start from there--> | ||
<script data-main="amd-main.js" src="../libs/requirejs/require.js"></script> | ||
|
||
</head> | ||
<body> | ||
<h1 id="qunit-header">gridster.js AMD 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 class="wrapper"> | ||
<ul> | ||
<li data-row="1" data-col="1" data-sizex="2" data-sizey="2"></li> | ||
<li data-row="1" data-col="3" data-sizex="1" data-sizey="2"></li> | ||
<li data-row="1" data-col="4" data-sizex="1" data-sizey="1"></li> | ||
<li data-row="3" data-col="2" data-sizex="3" data-sizey="1"></li> | ||
|
||
<li data-row="4" data-col="1" data-sizex="1" data-sizey="1"></li> | ||
<li data-row="3" data-col="1" data-sizex="1" data-sizey="1"></li> | ||
<li data-row="4" data-col="2" data-sizex="1" data-sizey="1"></li> | ||
<li data-row="5" data-col="2" data-sizex="1" data-sizey="1"></li> | ||
<li data-row="4" data-col="4" data-sizex="1" data-sizey="1"></li> | ||
|
||
<li data-row="1" data-col="5" data-sizex="1" data-sizey="3"></li> | ||
|
||
|
||
<li data-row="5" data-col="1" data-sizex="1" data-sizey="2"></li> | ||
<li data-row="4" data-col="3" data-sizex="1" data-sizey="2"></li> | ||
<li data-row="5" data-col="4" data-sizex="1" data-sizey="1"></li> | ||
<li data-row="6" data-col="2" data-sizex="3" data-sizey="1"></li> | ||
|
||
<li data-row="4" data-col="5" data-sizex="1" data-sizey="2"></li> | ||
<li data-row="6" data-col="5" data-sizex="1" data-sizey="1"></li> | ||
|
||
<li data-row="7" data-col="3" data-sizex="1" data-sizey="1"></li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* global require */ | ||
"use strict"; | ||
define([ | ||
'QUnit', | ||
'jquery', | ||
'gridster' | ||
], function(QUnit, $, gridster) { | ||
|
||
QUnit.module("Gridster AMD", { | ||
setup: function () { | ||
}, | ||
teardown: function () { | ||
} | ||
}); | ||
|
||
QUnit.test('window.$ should be undefined.', function() { | ||
equal(typeof window.$, 'undefined', 'window.$ should be undefined'); | ||
equal(typeof window.jQuery, 'undefined', 'window.jQuery should be undefined'); | ||
}); | ||
|
||
|
||
QUnit.test('gridster should be initialized.', function() { | ||
$('.wrapper ul').gridster(); | ||
equal($(".wrapper").hasClass('ready'), true, 'Gridster should initialized wrapper.'); | ||
equal($(".wrapper ul li").length, $(".gs-w").length, 'grid elements get a .gs-w class'); | ||
}); | ||
} | ||
); |