Skip to content

Commit

Permalink
Added dependencies
Browse files Browse the repository at this point in the history
Added dependencies to avoid breaking the code when minifying.
  • Loading branch information
Timothy E. Johansson committed Jul 1, 2014
1 parent dabfb3b commit 9edac02
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions angularjs.userapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var userappModule = angular.module('UserApp', []);
};

// Authentication service
userappModule.factory('user', function($rootScope, $location, $injector, $log, $timeout, $q) {
userappModule.factory('user', ['$rootScope', '$location', '$injector', '$log', '$timeout', '$q', function($rootScope, $location, $injector, $log, $timeout, $q) {
var user = {};
var appId = null;
var options = null;
Expand Down Expand Up @@ -636,10 +636,10 @@ var userappModule = angular.module('UserApp', []);
});

return service;
});
}]);

// Logout directive
userappModule.directive('uaLogout', function($timeout, user) {
userappModule.directive('uaLogout', ['$timeout', 'user', function($timeout, user) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
Expand All @@ -666,10 +666,10 @@ var userappModule = angular.module('UserApp', []);
element.on ? element.on('click', evHandler) : element.bind('click', evHandler);
}
};
});
}]);

// Login directive
userappModule.directive('uaLogin', function($rootScope, $timeout, user) {
userappModule.directive('uaLogin', ['$rootScope', '$timeout', 'user', function($rootScope, $timeout, user) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
Expand Down Expand Up @@ -705,10 +705,10 @@ var userappModule = angular.module('UserApp', []);
element.on ? element.on('submit', evHandler) : element.bind('submit', evHandler);
}
};
});
}]);

// Signup directive
userappModule.directive('uaSignup', function($rootScope, $timeout, user, UserApp) {
userappModule.directive('uaSignup', ['$rootScope', '$timeout', 'user', 'UserApp', function($rootScope, $timeout, user, UserApp) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
Expand Down Expand Up @@ -769,10 +769,10 @@ var userappModule = angular.module('UserApp', []);
element.on ? element.on('submit', evHandler) : element.bind('submit', evHandler);
}
};
});
}]);

// Reset password directive
userappModule.directive('uaResetPassword', function($rootScope, $timeout, user) {
userappModule.directive('uaResetPassword', ['$rootScope', '$timeout', 'user', function($rootScope, $timeout, user) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
Expand Down Expand Up @@ -809,10 +809,10 @@ var userappModule = angular.module('UserApp', []);
element.on ? element.on('submit', evHandler) : element.bind('submit', evHandler);
}
};
});
}]);

// Set password directive
userappModule.directive('uaSetPassword', function($rootScope, $location, $timeout, user) {
userappModule.directive('uaSetPassword', ['$rootScope', '$location', '$timeout', 'user', function($rootScope, $location, $timeout, user) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
Expand Down Expand Up @@ -849,10 +849,10 @@ var userappModule = angular.module('UserApp', []);
element.on ? element.on('submit', evHandler) : element.bind('submit', evHandler);
}
};
});
}]);

// OAuth URL directive
userappModule.directive('uaOauthLink', function($timeout, $location, user, UserApp) {
userappModule.directive('uaOauthLink', ['$timeout', '$location', 'user', 'UserApp', function($timeout, $location, user, UserApp) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
Expand Down Expand Up @@ -917,10 +917,10 @@ var userappModule = angular.module('UserApp', []);
element.on ? element.on('click', evHandler) : element.bind('click', evHandler);
}
};
});
}]);

// hasPermission directive
userappModule.directive('uaHasPermission', function(user) {
userappModule.directive('uaHasPermission', ['user', function(user) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
Expand All @@ -941,10 +941,10 @@ var userappModule = angular.module('UserApp', []);
}
}
};
});
}]);

// hasFeature directive
userappModule.directive('uaHasFeature', function(user) {
userappModule.directive('uaHasFeature', ['user', function(user) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
Expand All @@ -965,7 +965,7 @@ var userappModule = angular.module('UserApp', []);
}
}
};
});
}]);

/*! Cookies.js - 0.3.1; Copyright (c) 2013, Scott Hamper; http://www.opensource.org/licenses/MIT */
(function(e){"use strict";var a=function(b,d,c){return 1===arguments.length?a.get(b):a.set(b,d,c)};a._document=document;a._navigator=navigator;a.defaults={path:"/"};a.get=function(b){a._cachedDocumentCookie!==a._document.cookie&&a._renewCache();return a._cache[b]};a.set=function(b,d,c){c=a._getExtendedOptions(c);c.expires=a._getExpiresDate(d===e?-1:c.expires);a._document.cookie=a._generateCookieString(b,d,c);return a};a.expire=function(b,d){return a.set(b,e,d)};a._getExtendedOptions=function(b){return{path:b&& b.path||a.defaults.path,domain:b&&b.domain||a.defaults.domain,expires:b&&b.expires||a.defaults.expires,secure:b&&b.secure!==e?b.secure:a.defaults.secure}};a._isValidDate=function(b){return"[object Date]"===Object.prototype.toString.call(b)&&!isNaN(b.getTime())};a._getExpiresDate=function(b,d){d=d||new Date;switch(typeof b){case "number":b=new Date(d.getTime()+1E3*b);break;case "string":b=new Date(b)}if(b&&!a._isValidDate(b))throw Error("`expires` parameter cannot be converted to a valid Date instance"); return b};a._generateCookieString=function(b,a,c){b=encodeURIComponent(b);a=(a+"").replace(/[^!#$&-+\--:<-\[\]-~]/g,encodeURIComponent);c=c||{};b=b+"="+a+(c.path?";path="+c.path:"");b+=c.domain?";domain="+c.domain:"";b+=c.expires?";expires="+c.expires.toUTCString():"";return b+=c.secure?";secure":""};a._getCookieObjectFromString=function(b){var d={};b=b?b.split("; "):[];for(var c=0;c<b.length;c++){var f=a._getKeyValuePairFromCookieString(b[c]);d[f.key]===e&&(d[f.key]=f.value)}return d};a._getKeyValuePairFromCookieString= function(b){var a=b.indexOf("="),a=0>a?b.length:a;return{key:decodeURIComponent(b.substr(0,a)),value:decodeURIComponent(b.substr(a+1))}};a._renewCache=function(){a._cache=a._getCookieObjectFromString(a._document.cookie);a._cachedDocumentCookie=a._document.cookie};a._areEnabled=function(){var b="1"===a.set("cookies.js",1).get("cookies.js");a.expire("cookies.js");return b};a.enabled=a._areEnabled();"function"===typeof define&&define.amd?define(function(){return a}):"undefined"!==typeof exports?("undefined"!== typeof module&&module.exports&&(exports=module.exports=a),exports.Cookies=a):window.Cookies=a})();
Expand Down

0 comments on commit 9edac02

Please sign in to comment.