diff options
author | rwldrn <waldron.rick@gmail.com> | 2011-08-26 10:44:50 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-08-26 10:44:50 -0400 |
commit | 3589a53de98c63a528855755492875318ed0136c (patch) | |
tree | 587051b17e2b18b3231ff0da0debf08b8c1337ea | |
parent | 2a045f8269de9ef936bfaa2efbf71b9962385cf8 (diff) | |
download | jquery-3589a53de98c63a528855755492875318ed0136c.tar.gz jquery-3589a53de98c63a528855755492875318ed0136c.zip |
Landing pull request 476. Fix lint complaints about unescaped -. Follow up to #10021 Fixes #10021.
More Details:
- https://github.com/jquery/jquery/pull/476
- http://bugs.jquery.com/ticket/10021
-rw-r--r-- | src/css.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css.js b/src/css.js index a4ca555ef..7abf95e98 100644 --- a/src/css.js +++ b/src/css.js @@ -6,7 +6,7 @@ var ralpha = /alpha\([^)]*\)/i, rupper = /([A-Z]|^ms)/g, rnumpx = /^-?\d+(?:px)?$/i, rnum = /^-?\d/, - rrelNum = /^([-+])=([-+.\de]+)/, + rrelNum = /^([\-+])=([\-+.\de]+)/, cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssWidth = [ "Left", "Right" ], |