diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-04-30 19:35:17 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-04-30 19:35:17 +0000 |
commit | bd4154879270c872e331054a9c481ca0d318517c (patch) | |
tree | 42c628fe5fbb3b54e3fa0f3c2cb3f02dc1c5a4ec | |
parent | cd455eeba7ef754f35a36b10ca27a31c14bb8a1f (diff) | |
download | jquery-bd4154879270c872e331054a9c481ca0d318517c.tar.gz jquery-bd4154879270c872e331054a9c481ca0d318517c.zip |
core: make sure all source files end with a single blank line.
-rw-r--r-- | src/dimensions.js | 2 | ||||
-rw-r--r-- | src/offset.js | 2 | ||||
-rw-r--r-- | src/selector.js | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/src/dimensions.js b/src/dimensions.js index 4dd154467..f052b5505 100644 --- a/src/dimensions.js +++ b/src/dimensions.js @@ -25,4 +25,4 @@ jQuery.each([ "Height", "Width" ], function(i, name){ function num(elem, prop) { elem = elem.jquery ? elem[0] : elem; return elem && parseInt( jQuery.curCSS(elem, prop, true), 10 ) || 0; -}
\ No newline at end of file +} diff --git a/src/offset.js b/src/offset.js index 23923c354..07a55cd33 100644 --- a/src/offset.js +++ b/src/offset.js @@ -162,4 +162,4 @@ jQuery.each( ['Left', 'Top'], function(i, name) { document.body[ 'scroll' + name ] : this[0][ 'scroll' + name ]; }; -});
\ No newline at end of file +}); diff --git a/src/selector.js b/src/selector.js index f88f7e9cb..bfd8bef1e 100644 --- a/src/selector.js +++ b/src/selector.js @@ -1,4 +1,3 @@ - var chars = jQuery.browser.safari && parseInt(jQuery.browser.version) < 417 ? "(?:[\\w*_-]|\\\\.)" : "(?:[\\w\u0128-\uFFFF*_-]|\\\\.)", @@ -449,5 +448,3 @@ jQuery.extend({ return r; } }); - - |