Skip to content

Commit 6de3ea4

Browse files
Change the Sizzle module to pull sizzle.js from /dist rather than /src. [close prototypejs#194]
1 parent 2bf2aed commit 6de3ea4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vendor/sizzle/selector_engine.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
Prototype._original_property = window.Sizzle;
2-
//= require "repository/src/sizzle"
2+
//= require "repository/dist/sizzle"
33

44
;(function(engine) {
55
var extendElements = Prototype.Selector.extendElements;
6-
6+
77
function select(selector, scope) {
88
return extendElements(engine(selector, scope || document));
99
}
1010

1111
function match(element, selector) {
1212
return engine.matches(selector, [element]).length == 1;
1313
}
14-
14+
1515
Prototype.Selector.engine = engine;
1616
Prototype.Selector.select = select;
1717
Prototype.Selector.match = match;

0 commit comments

Comments
 (0)