sogo/UI/WebServerResources/md-colors/script.js

20 lines
429 B
JavaScript
Raw Normal View History

2015-02-04 15:46:58 +01:00
(function() {
"use strict";
//Use an IIFE
AppController.$inject = ['ThemeColors']
function AppController(ThemeColors) {
this.version = angular.version.full + " " + angular.version.codeName;
this.th = ThemeColors;
}
//Hook up all my function into angular
angular.module('myPlunk', [
'ngMaterial',
'mdColors'
])
.controller('AppController', AppController)
}());