Skip to content

Commit

Permalink
Landing pull request 476. Fix lint complaints about unescaped -. Foll…
Browse files Browse the repository at this point in the history
…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.
2 changes: 1 addition & 1 deletion src/css.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var ralpha = /alpha\([^)]*\)/i,
rupper = /([A-Z]|^ms)/g, rupper = /([A-Z]|^ms)/g,
rnumpx = /^-?\d+(?:px)?$/i, rnumpx = /^-?\d+(?:px)?$/i,
rnum = /^-?\d/, rnum = /^-?\d/,
rrelNum = /^([-+])=([-+.\de]+)/, rrelNum = /^([\-+])=([\-+.\de]+)/,


cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssShow = { position: "absolute", visibility: "hidden", display: "block" },
cssWidth = [ "Left", "Right" ], cssWidth = [ "Left", "Right" ],
Expand Down

0 comments on commit 3589a53

Please sign in to comment.