Skip to content

Commit

Permalink
Fixed argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
kokeksibir committed Aug 6, 2015
1 parent 7dc54c9 commit 4da58a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/basyt.angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ angular.module('basyt-angular', ['ui.router'])
socket: window.SOCKET_URL,
socketOptions: window.SOCKET_OPTS
})
.run(['$rootScope', '$state', '$injector', 'BasytAuth', 'BasytAnonState', 'BasytAuthMessages', function($rootScope, $state, BasytAuth, $injector, BasytAnonState, BasytAuthMessages){
.run(['$rootScope', '$state', '$injector', 'BasytAuth', 'BasytAnonState', 'BasytAuthMessages', function($rootScope, $state, $injector, BasytAuth, BasytAnonState, BasytAuthMessages){
var $alert = $injector.get('$alert');
$rootScope.$on("$stateChangeStart", function(event, next) {
if (next.role) {
Expand Down
2 changes: 1 addition & 1 deletion dist/basyt.angular.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion module.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ angular.module('basyt-angular', ['ui.router'])
socket: window.SOCKET_URL,
socketOptions: window.SOCKET_OPTS
})
.run(['$rootScope', '$state', '$injector', 'BasytAuth', 'BasytAnonState', 'BasytAuthMessages', function($rootScope, $state, BasytAuth, $injector, BasytAnonState, BasytAuthMessages){
.run(['$rootScope', '$state', '$injector', 'BasytAuth', 'BasytAnonState', 'BasytAuthMessages', function($rootScope, $state, $injector, BasytAuth, BasytAnonState, BasytAuthMessages){
var $alert = $injector.get('$alert');
$rootScope.$on("$stateChangeStart", function(event, next) {
if (next.role) {
Expand Down

0 comments on commit 4da58a4

Please sign in to comment.