1
0
mirror of https://github.com/Foltik/Shimapan synced 2025-04-07 02:28:48 -04:00

Fix component definitions to work with minifying

This commit is contained in:
Jack 2017-10-14 15:37:06 -04:00
parent 582b1260a2
commit 2f5156c198
Signed by: foltik
GPG Key ID: 303F88F996E95541
3 changed files with 70 additions and 76 deletions

View File

@ -1,4 +1,6 @@
function LoginController($scope, AuthService) { angular.module('LoginComp', ['AuthSvc']).component('loginComponent', {
templateUrl: '/views/shimapan/login-form.html',
controller: ['$scope', 'AuthService', function ($scope, AuthService) {
$scope.login = function () { $scope.login = function () {
AuthService.login({ AuthService.login({
username: $scope.username, username: $scope.username,
@ -7,9 +9,5 @@ function LoginController($scope, AuthService) {
alert('Logged In'); alert('Logged In');
}); });
} }
} }]
angular.module('LoginComp', ['AuthSvc']).component('loginComponent', {
templateUrl: '/views/shimapan/login-form.html',
controller: LoginController
}); });

View File

@ -1,4 +1,6 @@
function RegisterController($scope, AuthService) { angular.module('RegisterComp', ['AuthSvc']).component('registerComponent', {
templateUrl: '/views/shimapan/register-form.html',
controller: ['$scope', 'AuthService', function ($scope, AuthService) {
$scope.register = function () { $scope.register = function () {
AuthService.register({ AuthService.register({
username: $scope.username, username: $scope.username,
@ -8,9 +10,5 @@ function RegisterController($scope, AuthService) {
alert('Registered'); alert('Registered');
}); });
}; };
} }]
angular.module('RegisterComp', ['AuthSvc']).component('registerComponent', {
templateUrl: '/views/shimapan/register-form.html',
controller: RegisterController
}); });

View File

@ -1,4 +1,6 @@
function UploadController($scope, Upload, $timeout, AuthService) { angular.module('UploadComp', ['ngFileUpload', 'AuthSvc']).component('uploadComponent', {
templateUrl: '/views/shimapan/upload-form.html',
controller: ['$scope', 'Upload', '$timeout', 'AuthService', function ($scope, Upload, $timeout, AuthService) {
$scope.errToString = function (err) { $scope.errToString = function (err) {
if (err === 'maxSize') if (err === 'maxSize')
return "File too large."; return "File too large.";
@ -46,10 +48,6 @@ function UploadController($scope, Upload, $timeout, AuthService) {
); );
}); });
}; };
} }],
angular.module('UploadComp', ['ngFileUpload', 'AuthSvc']).component('uploadComponent', {
templateUrl: '/views/shimapan/upload-form.html',
controller: UploadController,
controllerAs: 'vm' controllerAs: 'vm'
}); });