From be6b995d66e5bf27082fc9559ab8108bfa02ff9c Mon Sep 17 00:00:00 2001 From: codewithpassion Date: Mon, 6 Oct 2014 11:41:54 -0700 Subject: [PATCH] fix spelling --- .../software-update-alert/public/js/software-update.js | 4 ++-- src/system-plugins/software-update-alert/public/settings.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/system-plugins/software-update-alert/public/js/software-update.js b/src/system-plugins/software-update-alert/public/js/software-update.js index aa584229..49723b39 100644 --- a/src/system-plugins/software-update-alert/public/js/software-update.js +++ b/src/system-plugins/software-update-alert/public/js/software-update.js @@ -18,7 +18,7 @@ self.branches = ko.observableArray(); self.isSaved = ko.observable(false); - self.changed = function() { + self.changeSelectedBranches = function() { var selected = []; self.branches().forEach(function(branch) { if (branch.selected() === true) { @@ -48,7 +48,7 @@ }); self.branches.push({ name: branch, selected: ko.observable(branchConfig.length > 0)}); }); - self.changedSelectedBranches(); + self.changeSelectedBranches(); }); }) } diff --git a/src/system-plugins/software-update-alert/public/settings.html b/src/system-plugins/software-update-alert/public/settings.html index fee704fe..9e3055cf 100644 --- a/src/system-plugins/software-update-alert/public/settings.html +++ b/src/system-plugins/software-update-alert/public/settings.html @@ -16,8 +16,8 @@ Show updates for these branches:
Saved!