viewDeckController.js 214 Bytes
var app = angular.module("flashy.viewDeckController.js", ['ui.router']);
app.controller("viewDeckController", ['$scope', function ($scope) {
$scope.hello = function () {
alert("hello");
}
}]);