i399exng1/app/list.ctrl.js

12 lines
128 B
JavaScript
Raw Normal View History

2017-03-13 12:29:29 +02:00
(function () {
'use strict';
angular.module('app').controller('ListCtrl', Ctrl);
2017-03-14 10:38:10 +02:00
function Ctrl() {
2017-03-13 12:29:29 +02:00
}
2017-03-14 10:38:10 +02:00
2017-03-13 12:29:29 +02:00
})();