We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf2aed commit 6de3ea4Copy full SHA for 6de3ea4
vendor/sizzle/selector_engine.js
@@ -1,17 +1,17 @@
1
Prototype._original_property = window.Sizzle;
2
-//= require "repository/src/sizzle"
+//= require "repository/dist/sizzle"
3
4
;(function(engine) {
5
var extendElements = Prototype.Selector.extendElements;
6
-
+
7
function select(selector, scope) {
8
return extendElements(engine(selector, scope || document));
9
}
10
11
function match(element, selector) {
12
return engine.matches(selector, [element]).length == 1;
13
14
15
Prototype.Selector.engine = engine;
16
Prototype.Selector.select = select;
17
Prototype.Selector.match = match;
0 commit comments