Skip to content

Commit

Permalink
uistub #42
Browse files Browse the repository at this point in the history
  • Loading branch information
forresto committed Aug 22, 2013
1 parent 20e5d4b commit 6a8bb03
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion debug.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!-- Third-Party Libraries -->
<script src="libs/jquery.js"></script>
<script src="libs/jquery-dragdrop.js"></script>
<script src="libs/jquery-uistub.js"></script>
<!-- <script src="libs/jquery-ui.js"></script> -->
<!-- <script src="libs/jquery.ui.touch-punch.js"></script> -->
<script src="libs/underscore.js"></script>
Expand Down
15 changes: 15 additions & 0 deletions libs/jquery-uistub.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
(function ( $ ) {

$.fn.draggable = function() {
return this;
};

$.fn.droppable = function() {
return this;
};

$.fn.resizable = function() {
return this;
};

}( jQuery ));

0 comments on commit 6a8bb03

Please sign in to comment.