grunt-durandal
Version:
Grunt Durandal Builder - Build durandal project using a custom require config and a custom almond
11 lines • 422 B
JavaScript
define(["knockout"], function (ko) {
return {
notes: ko.observable([
{ title: "Notes #1", content: "Content Note #1" },
{ title: "Notes #2", content: "Content Note #2" },
{ title: "Notes #3", content: "Content Note #3" },
{ title: "Notes #4", content: "Content Note #4" },
{ title: "Notes #5", content: "Content Note #5" },
]),
};
});