Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions knockout.command.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
executeDelegate = options.execute;

self.canExecute = ko.computed(function() {
return canExecuteDelegate ? canExecuteDelegate() : true;
//Force chatty canExecuteDelegate() to boolean to avoid pointless update of subscribers (i.e. activity)
return canExecuteDelegate ? !!canExecuteDelegate() : true;
});

self.execute = function (arg1, arg2) {
Expand Down Expand Up @@ -57,7 +58,7 @@
self.isExecuting = ko.observable();

self.canExecute = ko.computed(function() {
return canExecuteDelegate ? canExecuteDelegate(self.isExecuting()) : !self.isExecuting();
return canExecuteDelegate ? !!canExecuteDelegate(self.isExecuting()) : !self.isExecuting();
});

self.execute = function (arg1, arg2) {
Expand Down