Skip to content

Commit

Permalink
Fixes Semantic-Org#3761 issue with misspelled callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
Petru-Vasile Avram committed Feb 26, 2016
1 parent 7e750cb commit 6e56420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/definitions/modules/checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ $.fn.checkbox = function(parameters) {
}
module.debug('Enabling checkbox');
module.set.enabled();
settings.onEnabled.call(input);
settings.onEnable.call(input);
},

disable: function() {
Expand All @@ -278,7 +278,7 @@ $.fn.checkbox = function(parameters) {
}
module.debug('Disabling checkbox');
module.set.disabled();
settings.onDisabled.call(input);
settings.onDisable.call(input);
},

get: {
Expand Down

0 comments on commit 6e56420

Please sign in to comment.