sogo/UI/WebServerResources/md-colors/script.js
2015-06-11 15:57:19 -04:00

20 lines
429 B
JavaScript
Executable file

(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)
}());