diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/forms/umbcheckbox.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/forms/umbcheckbox.directive.js index 9b59d9b81f..54c6c67755 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/forms/umbcheckbox.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/forms/umbcheckbox.directive.js @@ -42,9 +42,9 @@ var vm = this; vm.callOnChange = function() { - $timeout(function(){ + $timeout(function() { vm.onChange({model:vm.model, value:vm.value}); - }, 0, false); + }, 0); } }