remove random test files

This commit is contained in:
Leo Horie 2014-05-23 13:34:48 -04:00
parent f50befc503
commit 3c17bd17f2
2 changed files with 0 additions and 133 deletions

View file

@ -1,98 +0,0 @@
<!doctype html>
<html>
<head>
<title>Don't break the chain</title>
</head>
<body>
<script src="mithril.js"></script>
<script>
//our app's namespace
var chain = {};
//model
chain.save = function(list) {
localStorage["chain-app.list"] = JSON.stringify(list);
};
chain.load = function() {
return JSON.parse(localStorage["chain-app.list"] || "[]");
};
chain.today = function() {
var now = new Date();
return new Date(now.getFullYear(), now.getMonth(), now.getDate(), 0, 0, 0, 0);
}
chain.resetDate = function() {
return localStorage["chain-app.start-date"] = chain.today().getTime();
}
chain.startDate = function() {
return new Date(parseInt(localStorage["chain-app.start-date"] || chain.resetDate()));
}
chain.dateAt = function(index) {
var date = new Date(chain.startDate());
date.setDate(date.getDate() + index);
return date;
}
//controller
chain.controller = function() {
var list = chain.load();
this.isChecked = function(index) {
return list[index]
};
this.check = function(index, status) {
if (chain.dateAt(index).getTime() <= chain.today().getTime()) {
list[index] = status;
chain.save(list);
}
};
};
//view
chain.view = function(ctrl) {
return m("table", chain.seven(function(y) {
return m("tr", chain.seven(function(x) {
var index = chain.indexAt(x, y)
return m("td", chain.highlights(index), [
m("input[type=checkbox]", chain.checks(ctrl, index))
]);
}));
}));
};
chain.seven = function(subject) {
var output = [];
for (var i = 0; i < 7; i++) output.push(subject(i));
return output;
};
chain.checks = function(ctrl, index) {
return {
onclick: function() {
ctrl.check(index, this.checked);
},
checked: ctrl.isChecked(index)
};
};
chain.highlights = function(index) {
return {
style: {
background: chain.dateAt(index).getTime() == chain.today().getTime() ? "silver" : ""
}
};
};
chain.indexAt = function(x, y) {
return y * 7 + x;
}
//render it
m.module(document.body, chain);
</script>
</body>
</html>

View file

@ -1,35 +0,0 @@
<script src="mithril.js"></script>
<script type="text/javascript">
//model
var identity = function(value) {return value}
var page = function(url) {
return m.request({method: "GET", url: url, deserialize: identity})
.then(marked)
.then(m.trust)
}
//controllers
var home = function(ctrl) {
this.title = "Home"
this.body = m.trust("hello home")//page("home.html")
}
var about = function(ctrl) {
this.title = "Home"
this.body = m.trust("hello about")//page("about.html")
}
//view
var layout = function(ctrl) {
return m("html", [
m("body", [
m("h1", ctrl.title),
m("#app", ctrl.body)
])
])
}
m.route(document, "/", {
"/": {controller: home, view: layout},
"/about": {controller: about, view: layout}
})
</script>