-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add jQuery plugin support; Fixes #73
add .option()
- Loading branch information
Showing
8 changed files
with
274 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
"predef": { | ||
"define": false, | ||
"module": false, | ||
"require": false, | ||
"jQuery": false | ||
"require": false | ||
} | ||
} |
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
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,51 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
|
||
<title>jQuery Draggabilly tests</title> | ||
|
||
<link rel="stylesheet" href="../bower_components/qunit/qunit/qunit.css" /> | ||
<link rel="stylesheet" href="test.css" /> | ||
|
||
<script src="../bower_components/jquery/dist/jquery.min.js"></script> | ||
<script src="../bower_components/jquery-bridget/jquery.bridget.js"></script> | ||
|
||
<script src="../bower_components/eventEmitter/EventEmitter.js"></script> | ||
<script src="../bower_components/eventie/eventie.js"></script> | ||
<script src="../bower_components/get-style-property/get-style-property.js"></script> | ||
<script src="../bower_components/classie/classie.js"></script> | ||
<script src="../bower_components/get-size/get-size.js"></script> | ||
<script src="../bower_components/unipointer/unipointer.js"></script> | ||
<script src="../bower_components/unidragger/unidragger.js"></script> | ||
<script src="../draggabilly.js"></script> | ||
|
||
<script src="../bower_components/qunit/qunit/qunit.js"></script> | ||
|
||
<script src="unit/jquery-basics.js"></script> | ||
<script src="unit/jquery-destroy.js"></script> | ||
|
||
</head> | ||
<body> | ||
|
||
<h1>jQuery Draggabilly tests</h1> | ||
|
||
<div class="column column--left"> | ||
<div class="test test--basics"> | ||
<h2>basics</h2> | ||
<div class="draggie"></div> | ||
</div> | ||
|
||
<div class="test test--destroy"> | ||
<h2>destroy</h2> | ||
<div class="draggie"></div> | ||
</div> | ||
</div> | ||
|
||
<div class="column column--right"> | ||
<div id="qunit"></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
Oops, something went wrong.