diff --git a/js/templates.js b/js/templates.js index 301a2f4..68ed730 100644 --- a/js/templates.js +++ b/js/templates.js @@ -3,7 +3,7 @@ angular.module('templates-main', ['views/list.html', 'views/note/edit.html', 'vi angular.module('views/list.html', []).run(['$templateCache', function ($templateCache) { 'use strict'; $templateCache.put('views/list.html', - '
{{ \'new\' | translate | capitalize}}
{{ \'cancel\' | translate | capitalize }}
{{ \'name\' | translate | capitalize}}
Modified
{{note.title}}
{{ note.content_plain.substr(0, 500) | htmlToPlaintext}}
{{ note.title }} {{ note.content_plain.substr(0, 500) | htmlToPlaintext}}
{{ note.mtime | timeAgo}}
'); + '
{{ \'new\' | translate | capitalize}}
{{ \'cancel\' | translate | capitalize }}
{{ \'name\' | translate | capitalize}}
Modified
{{note.title}}
{{ note.content_plain.substr(0, 500) | htmlToPlaintext}}
{{ note.title }} {{ note.content_plain.substr(0, 500) | htmlToPlaintext}}
{{ note.mtime | timeAgo}}
'); }]); angular.module('views/note/edit.html', []).run(['$templateCache', function ($templateCache) {