Skip to content

Instantly share code, notes, and snippets.

@jfkhoury
Created August 14, 2013 15:02
Show Gist options
  • Save jfkhoury/6231905 to your computer and use it in GitHub Desktop.
Save jfkhoury/6231905 to your computer and use it in GitHub Desktop.
that.buttonLabel = ko.computed(function () {
if (that.isTermSelected()) {
return str("deleteEntireTerm");
}
if (idsToDelete().length > 0) {
return idsToDelete().length === 1 ? str("deleteCourse") : str("deleteCourses");
}
return str("deleteSelection");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment