unserver-unify
Version:
12 lines • 560 B
JavaScript
;
angular.module('bamboo').controller('MobileAdvCtrl', function($scope, $rootScope, deviceDetector, ApiService, $state) {
this.schoolIconUrl = ApiService.SHOST + "/public/" + ApiService.RES + "/school/" + $rootScope.currentSchool._id + "/";
$state.go('index.home');
console.log($rootScope.currentSchool);
if (deviceDetector.isMobile() && !deviceDetector.isTablet()) {
angular.element('body').addClass('splash_bg');
$scope.$on('$destroy', function() {
angular.element('body').removeClass('splash_bg');
});
}
})