aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrwldrn <waldron.rick@gmail.com>2011-08-26 10:44:50 -0400
committertimmywil <timmywillisn@gmail.com>2011-08-26 10:44:50 -0400
commit3589a53de98c63a528855755492875318ed0136c (patch)
tree587051b17e2b18b3231ff0da0debf08b8c1337ea
parent2a045f8269de9ef936bfaa2efbf71b9962385cf8 (diff)
downloadjquery-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.js2
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" ],