Skip to content
Permalink
Browse files
Landing pull request 476. Fix lint complaints about unescaped -. Foll…
…ow up to #10021 Fixes #10021.

More Details:
 - #476
 - http://bugs.jquery.com/ticket/10021
  • Loading branch information
rwaldron authored and timmywil committed Aug 26, 2011
1 parent 2a045f8 commit 3589a53
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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" ],

0 comments on commit 3589a53

Please sign in to comment.