Skip to content
This repository has been archived by the owner on Jan 16, 2020. It is now read-only.

Commit

Permalink
Fixes ws in match[ # ]
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Jan 30, 2012
1 parent 0943df0 commit aa59dcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/jquery.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
[];

return {
browser: match[1] || "",
version: match[2] || "0"
browser: match[ 1 ] || "",
version: match[ 2 ] || "0"
};
};

Expand Down
4 changes: 2 additions & 2 deletions src/jquery.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
[];

return {
browser: match[1] || "",
version: match[2] || "0"
browser: match[ 1 ] || "",
version: match[ 2 ] || "0"
};
};

Expand Down

0 comments on commit aa59dcb

Please sign in to comment.