aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2009-01-01 03:10:43 +0000
committerScott González <scott.gonzalez@gmail.com>2009-01-01 03:10:43 +0000
commitfe7f1af38c1de8c516a89a5cbb71962b72f8a87e (patch)
treeb173e09ab9c11fd73e9cafcb0b2b8087f6438dc2
parentd9a5b09b0018e09a653884926662f80e42206010 (diff)
downloadjquery-ui-fe7f1af38c1de8c516a89a5cbb71962b72f8a87e.tar.gz
jquery-ui-fe7f1af38c1de8c516a89a5cbb71962b72f8a87e.zip
Core: Cleaned up whitespace.
-rw-r--r--ui/ui.core.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/ui/ui.core.js b/ui/ui.core.js
index 0eb59bab5..9432777d6 100644
--- a/ui/ui.core.js
+++ b/ui/ui.core.js
@@ -14,7 +14,6 @@ var _remove = $.fn.remove,
//Helper functions and ui object
$.ui = {
-
version: "@VERSION",
// $.ui.plugin is deprecated. Use the proxy pattern instead.
@@ -125,7 +124,6 @@ $.ui = {
TAB: 9,
UP: 38
}
-
};
// WAI-ARIA normalization
@@ -161,7 +159,6 @@ if (isFF2) {
//jQuery plugins
$.fn.extend({
-
remove: function() {
// Safari has a native remove event which actually removes DOM elements,
// so we have to use triggerHandler instead of trigger (#3037).
@@ -186,7 +183,6 @@ $.fn.extend({
},
scrollParent: function() {
-
var scrollParent;
if(($.browser.msie && (/(static|relative)/).test(this.css('position'))) || (/absolute/).test(this.css('position'))) {
scrollParent = this.parents().filter(function() {
@@ -199,23 +195,18 @@ $.fn.extend({
}
return (/fixed/).test(this.css('position')) || !scrollParent.length ? $(document) : scrollParent;
-
-
}
-
});
//Additional selectors
$.extend($.expr[':'], {
-
data: function(elem, i, match) {
return !!$.data(elem, match[3]);
},
// TODO: add support for object, area
tabbable: function(elem) {
-
var nodeName = elem.nodeName.toLowerCase();
function isVisible(element) {
return !($(element).is(':hidden') || $(element).parents(':hidden').length);
@@ -238,9 +229,7 @@ $.extend($.expr[':'], {
// visible on page
isVisible(elem)
);
-
}
-
});