passman/js/templates.js
2016-09-10 14:02:54 +02:00

7 lines
226 B
JavaScript

angular.module('templates-main', ['views/main.html']);
angular.module('views/main.html', []).run(['$templateCache', function($templateCache) {
'use strict';
$templateCache.put('views/main.html',
'Hello world!');
}]);