Browse Source

Merge pull request #2225 from pencilcheck/patch-1

The wrong this
pull/2244/head
Jack Lukic 9 years ago
parent
commit
8dafa5f9a1
1 changed files with 3 additions and 3 deletions
  1. 6
      src/definitions/modules/checkbox.js

6
src/definitions/modules/checkbox.js

@ -93,9 +93,9 @@ $.fn.checkbox = function(parameters) {
},
refresh: function() {
$module = $(this);
$label = $(this).find(selector.label).first();
$input = $(this).find(selector.input);
$module = $(element);
$label = $(element).find(selector.label).first();
$input = $(element).find(selector.input);
},
observeChanges: function() {

Loading…
Cancel
Save