From 6a8bb031913faabc7b78147f94ec1328c9dbaee0 Mon Sep 17 00:00:00 2001 From: Forrest Oliphant Date: Wed, 21 Aug 2013 20:07:04 -0400 Subject: [PATCH] uistub #42 --- debug.html | 2 +- libs/jquery-uistub.js | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 libs/jquery-uistub.js diff --git a/debug.html b/debug.html index eab0cc3..503dc0c 100644 --- a/debug.html +++ b/debug.html @@ -8,7 +8,7 @@ - + diff --git a/libs/jquery-uistub.js b/libs/jquery-uistub.js new file mode 100644 index 0000000..962e85e --- /dev/null +++ b/libs/jquery-uistub.js @@ -0,0 +1,15 @@ +(function ( $ ) { + + $.fn.draggable = function() { + return this; + }; + + $.fn.droppable = function() { + return this; + }; + + $.fn.resizable = function() { + return this; + }; + +}( jQuery )); \ No newline at end of file