23 lines
621 B
JavaScript
Executable File
23 lines
621 B
JavaScript
Executable File
(function () {
|
|
'use strict';
|
|
|
|
angular.module('clientApp')
|
|
.controller('UserSpaceCtrl', ['$scope', '$state',
|
|
function ($scope, $state) {
|
|
|
|
init();
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
function init() {
|
|
|
|
}
|
|
|
|
// ---------------------------------------------------------------
|
|
// Public method -------------------------------------------------
|
|
// ---------------------------------------------------------------
|
|
|
|
}]);
|
|
|
|
})();
|