Skip to content

Commit

Permalink
Fixed layout issues by calling initializeUI after 100ms
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed May 28, 2015
1 parent 02ebec7 commit a4b8828
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/js/controllers/rootCtrl.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
angular.module('jboss-forge').controller('rootCtrl', function($scope){
$scope.$on('$viewContentLoaded', function(event) {
initializeUI();
setTimeout(function() {
initializeUI();
},100);
});
});

0 comments on commit a4b8828

Please sign in to comment.