Skip to content

Commit

Permalink
Merge pull request #2 from artisonian/master
Browse files Browse the repository at this point in the history
Fix DOM selector bug
  • Loading branch information
honza committed Nov 24, 2012
2 parents 6cc981b + c046dbc commit 8c8744c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 140medley.js
Expand Up @@ -193,8 +193,8 @@ var $ = function(
|| document // or document, || document // or document,
)[ )[
"getElement" + ( // obtained by the appropriate method calculated by "getElement" + ( // obtained by the appropriate method calculated by
b = a[1] a[1]
? b == "#" ? a[1] == "#"
? "ById" // the node by ID, ? "ById" // the node by ID,
: "sByClassName" // the nodes by class name, or : "sByClassName" // the nodes by class name, or
: "sByTagName" // the nodes by tag name, : "sByTagName" // the nodes by tag name,
Expand Down
2 changes: 1 addition & 1 deletion 140medley.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8c8744c

Please sign in to comment.