From 3589a53de98c63a528855755492875318ed0136c Mon Sep 17 00:00:00 2001 From: rwldrn Date: Fri, 26 Aug 2011 10:44:50 -0400 Subject: [PATCH] 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 --- src/css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ], -- 2.39.5