We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ec1d00 commit c1e14fcCopy full SHA for c1e14fc
src/prototype/dom/selector_engine.js
@@ -1,7 +1,7 @@
1
/* eslint-disable no-undef */
2
Prototype._original_property = window.Sizzle;
3
4
-;(function () {
+(function () {
5
function fakeDefine(fn) {
6
Prototype._actual_sizzle = fn();
7
}
@@ -18,7 +18,7 @@ Prototype._original_property = window.Sizzle;
18
19
//= require "../../../vendor/sizzle/sizzle"
20
21
-;(function() {
+(function() {
22
if (typeof Sizzle !== 'undefined') {
23
// Sizzle was properly defined.
24
return;
@@ -41,7 +41,7 @@ Prototype._original_property = window.Sizzle;
41
42
})();
43
44
-;(function(engine) {
+(function(engine) {
45
function select(selector, scope) {
46
return engine(selector, scope || document);
47
0 commit comments