r3253 committed - dev: new files for autocomplete, button, menu, modal and tooltip

r3253 committed - dev: new files for autocomplete, button, menu, modal and tooltip


Revision: 3253
Author: joern.zaefferer
Date: Thu Sep 17 05:30:58 2009
Log: dev: new files for autocomplete, button, menu, modal and tooltip
http://code.google.com/p/jquery-ui/source/detail?r=3253
Added:
/branches/dev/ui/jquery.ui.autocomplete.js
/branches/dev/ui/jquery.ui.button.js
/branches/dev/ui/jquery.ui.menu.js
/branches/dev/ui/jquery.ui.modal.js
/branches/dev/ui/jquery.ui.tooltip.js
=======================================
--- /dev/null
+++ /branches/dev/ui/jquery.ui.autocomplete.js    Thu Sep 17 05:30:58 2009
@@ -0,0 +1,21 @@
+/*
+ * jQuery UI Autocomplete @VERSION
+ *
+ * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Autocomplete
+ *
+ * Depends:
+ *    jquery.ui.core.js
+ */
+(function($) {
+
+$.widget("ui.autocomplete", {
+    _init: function() {
+
+    }
+});
+
+})(jQuery);
=======================================
--- /dev/null
+++ /branches/dev/ui/jquery.ui.button.js    Thu Sep 17 05:30:58 2009
@@ -0,0 +1,21 @@
+/*
+ * jQuery UI Button @VERSION
+ *
+ * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Button
+ *
+ * Depends:
+ *    jquery.ui.core.js
+ */
+(function($) {
+
+$.widget("ui.button", {
+    _init: function() {
+
+    }
+});
+
+})(jQuery);
=======================================
--- /dev/null
+++ /branches/dev/ui/jquery.ui.menu.js    Thu Sep 17 05:30:58 2009
@@ -0,0 +1,21 @@
+/*
+ * jQuery UI Menu @VERSION
+ *
+ * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Menu
+ *
+ * Depends:
+ *    jquery.ui.core.js
+ */
+(function($) {
+
+$.widget("ui.menu", {
+    _init: function() {
+
+    }
+});
+
+})(jQuery);
=======================================
--- /dev/null
+++ /branches/dev/ui/jquery.ui.modal.js    Thu Sep 17 05:30:58 2009
@@ -0,0 +1,21 @@
+/*
+ * jQuery UI Modal @VERSION
+ *
+ * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Modal
+ *
+ * Depends:
+ *    jquery.ui.core.js
+ */
+(function($) {
+
+$.widget("ui.modal", {
+    _init: function() {
+
+    }
+});
+
+})(jQuery);
=======================================
--- /dev/null
+++ /branches/dev/ui/jquery.ui.tooltip.js    Thu Sep 17 05:30:58 2009
@@ -0,0 +1,21 @@
+/*
+ * jQuery UI Tooltip @VERSION
+ *
+ * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Tooltip
+ *
+ * Depends:
+ *    jquery.ui.core.js
+ */
+(function($) {
+
+$.widget("ui.tooltip", {
+    _init: function() {
+
+    }
+});
+
+})(jQuery);