diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-12-22 19:51:24 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-12-22 19:51:24 +0000 |
commit | 06e29401b880b5e8fc64be00b2be9df5cc8f0f88 (patch) | |
tree | cec761b0a3f921f7f0192238ef3cc47f4dc8d439 /ui/jquery.ui.widget.js | |
parent | b6d17b24d4d2302d490c2f83552c7fbc16e96ba4 (diff) | |
download | jquery-ui-06e29401b880b5e8fc64be00b2be9df5cc8f0f88.tar.gz jquery-ui-06e29401b880b5e8fc64be00b2be9df5cc8f0f88.zip |
Split mouse into its own file and udpdated dependency lists.
Fixes #5023 - Split mouse code into its own file.
Diffstat (limited to 'ui/jquery.ui.widget.js')
-rw-r--r-- | ui/jquery.ui.widget.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index 2047c4723..9321e05db 100644 --- a/ui/jquery.ui.widget.js +++ b/ui/jquery.ui.widget.js @@ -1,14 +1,14 @@ /*! - * jQuery UI @VERSION + * jQuery UI Widget @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 + * http://docs.jquery.com/UI/Widget */ (function($) { - + var _remove = $.fn.remove; $.fn.remove = function() { @@ -17,10 +17,10 @@ $.fn.remove = function() { $("*", this).add(this).each(function() { $(this).triggerHandler("remove"); }); - return _remove.apply(this, arguments ); + return _remove.apply(this, arguments); }; - - // $.widget is a factory to create jQuery plugins + +// $.widget is a factory to create jQuery plugins // taking some boilerplate code out of the plugin code $.widget = function(name, prototype) { var namespace = name.split(".")[0], |