We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6be5b73 commit 77d6c1eCopy full SHA for 77d6c1e
X.js
@@ -153,6 +153,9 @@ function inject(a, b) {
153
return a; // return the altered object
154
}
155
156
+// make sure we don't overwrite a $ sign to ensure compatibility with jQuery
157
+var $ = window.$;
158
+
159
//
160
// BROWSER COMPATIBILITY FIXES GO HERE
161
@@ -339,6 +342,7 @@ bind_shim();
339
342
requestAnimationFrame_shim();
340
343
arrayBufferSlice_shim();
341
344
345
+goog.exportSymbol('$', $);
346
goog.exportSymbol('Function.prototype.bind', Function.prototype.bind);
347
goog.exportSymbol('window.requestAnimationFrame', window.requestAnimationFrame);
348
goog.exportSymbol('window.cancelAnimationFrame', window.cancelAnimationFrame);
0 commit comments