More fixes
This commit is contained in:
@@ -26,7 +26,3 @@ var app = angular.module('Deck', [
|
|||||||
'ngAnimate'
|
'ngAnimate'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$('link[rel="shortcut icon"]').attr(
|
|
||||||
'href',
|
|
||||||
OC.filePath('deck', 'img', 'app-512.png')
|
|
||||||
);
|
|
||||||
|
|||||||
@@ -18,4 +18,10 @@ app.run(function ($document, $rootScope, $transitions) {
|
|||||||
$transitions.onExit({from: 'board.detail'}, function ($state) {
|
$transitions.onExit({from: 'board.detail'}, function ($state) {
|
||||||
$rootScope.sidebar.show = false;
|
$rootScope.sidebar.show = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('link[rel="shortcut icon"]').attr(
|
||||||
|
'href',
|
||||||
|
OC.filePath('deck', 'img', 'app-512.png')
|
||||||
|
);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -27,10 +27,6 @@ var app = angular.module('Deck', [
|
|||||||
'ngAnimate'
|
'ngAnimate'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$('link[rel="shortcut icon"]').attr(
|
|
||||||
'href',
|
|
||||||
OC.filePath('deck', 'img', 'app-512.png')
|
|
||||||
);
|
|
||||||
|
|
||||||
app.config(["$provide", "$routeProvider", "$interpolateProvider", "$httpProvider", "$urlRouterProvider", "$stateProvider", "$compileProvider", function ($provide, $routeProvider, $interpolateProvider, $httpProvider, $urlRouterProvider, $stateProvider, $compileProvider) {
|
app.config(["$provide", "$routeProvider", "$interpolateProvider", "$httpProvider", "$urlRouterProvider", "$stateProvider", "$compileProvider", function ($provide, $routeProvider, $interpolateProvider, $httpProvider, $urlRouterProvider, $stateProvider, $compileProvider) {
|
||||||
'use strict';
|
'use strict';
|
||||||
@@ -95,6 +91,12 @@ app.run(["$document", "$rootScope", "$transitions", function ($document, $rootSc
|
|||||||
$transitions.onExit({from: 'board.detail'}, function ($state) {
|
$transitions.onExit({from: 'board.detail'}, function ($state) {
|
||||||
$rootScope.sidebar.show = false;
|
$rootScope.sidebar.show = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('link[rel="shortcut icon"]').attr(
|
||||||
|
'href',
|
||||||
|
OC.filePath('deck', 'img', 'app-512.png')
|
||||||
|
);
|
||||||
|
|
||||||
}]);
|
}]);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user