Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit c712972

Browse files
committed
Use window.jQuery instead of $
1 parent f46e92c commit c712972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ angular.module('ui.select', [])
270270
if (window.jQuery) {
271271
// Firefox 3.6 does not support element.contains()
272272
// See Node.contains https://developer.mozilla.org/en-US/docs/Web/API/Node.contains
273-
contains = $.contains(element[0], e.target);
273+
contains = window.jQuery.contains(element[0], e.target);
274274
} else {
275275
contains = element[0].contains(e.target);
276276
}

0 commit comments

Comments
 (0)