Skip to content

Commit

Permalink
fix(jQueryMixin): update jQuery calls to use jQuery rather than $
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus authored and tomchentw committed Nov 14, 2014
1 parent 0f809a1 commit d1d858b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ToastMessage/jQueryMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ module.exports = {
},

_get_$_node:function () {
return $(this.getDOMNode());
return jQuery(this.getDOMNode());
},

_set_interval_id:function (intervalId) {
Expand Down
2 changes: 1 addition & 1 deletion src/ToastMessage/jQueryMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ module.exports = {
},

_get_$_node () {
return $(this.getDOMNode());
return jQuery(this.getDOMNode());
},

_set_interval_id (intervalId) {
Expand Down

0 comments on commit d1d858b

Please sign in to comment.