Indentation fixes

This commit is contained in:
Steve Purcell 2015-01-14 09:43:22 +00:00
parent 8cf9ef8dfe
commit 6656843a06

View file

@ -441,7 +441,7 @@
m("dt", "Org"), m("dt", "Org"),
m("dd", m("pre", '[[' + fullURL + '][file:' + badgeURL + ']]')) m("dd", m("pre", '[[' + fullURL + '][file:' + badgeURL + ']]'))
]) ])
])) ]))
]); ]);
}; };
@ -455,7 +455,7 @@
this.buildCompletionTime = m.request({method: 'GET', url: "/build-status.json"}) this.buildCompletionTime = m.request({method: 'GET', url: "/build-status.json"})
.then(function(status){ .then(function(status){
return new Date(status.completed * 1000); return new Date(status.completed * 1000);
}); });
}; };
melpa.buildstatus.view = function(ctrl) { melpa.buildstatus.view = function(ctrl) {
return m(".alert.alert-success", [ return m(".alert.alert-success", [
@ -497,7 +497,7 @@
melpa.staticpage = function(partialPath) { melpa.staticpage = function(partialPath) {
this.controller = function() { this.controller = function() {
this.content = m.prop(''); this.content = m.prop('');
m.request({method: "GET", url: partialPath, m.request({method: "GET", url: partialPath,
deserialize: function(v){return v;} deserialize: function(v){return v;}
}).then(this.content); }).then(this.content);