style fixes

pull/32/head
Szekeres Bálint 2018-11-20 00:37:53 +01:00
parent 7c26dbb5bc
commit d339981138
1 changed files with 15 additions and 21 deletions

View File

@ -97,6 +97,14 @@
function appConfig($locationProvider) {
$locationProvider
.html5Mode(true)
.hashPrefix('!');
}
function tooltipsConfig(tooltipsConfProvider) { function tooltipsConfig(tooltipsConfProvider) {
tooltipsConfProvider.configure({ tooltipsConfProvider.configure({
side: 'right', side: 'right',
@ -106,14 +114,6 @@
function appConfig($locationProvider) {
$locationProvider
.html5Mode(true)
.hashPrefix('!');
}
function ngIncludeTabs() { function ngIncludeTabs() {
return { return {
require: 'ngInclude', require: 'ngInclude',
@ -148,14 +148,14 @@
///////////////////// /////////////////////
$scope.defaultData = DEFAULTS; $scope.defaultData = DEFAULTS;
$scope.location = $location; $scope.dataInit = false;
$scope.data = angular.copy($scope.defaultData); $scope.isDirty = false;
$scope.dataInit = false; $scope.tab = 'site';
$scope.isDirty = false; $scope.data = angular.copy($scope.defaultData);
$scope.tab = 'site';
$scope.sslCertificateChanged = false; $scope.clipboardCopy = undefined;
$scope.sslCertificateKeyChanged = false;
$scope.gzipTypes = 'text/plain text/css text/xml application/json application/javascript application/xml+rss application/atom+xml image/svg+xml';
$scope.extensions = { $scope.extensions = {
assets: 'css(\\.map)?|js(\\.map)?', assets: 'css(\\.map)?|js(\\.map)?',
@ -170,8 +170,6 @@
'pptx?|potx?|pptm|potm|ppsx?', 'pptx?|potx?|pptm|potm|ppsx?',
}; };
$scope.gzipTypes = 'text/plain text/css text/xml application/json application/javascript application/xml+rss application/atom+xml image/svg+xml';
$scope.sslProfiles = { $scope.sslProfiles = {
modern: { modern: {
protocols: 'TLSv1.2', protocols: 'TLSv1.2',
@ -187,8 +185,6 @@
}, },
}; };
$scope.clipboardCopy = undefined;
///////////////////// /////////////////////
@ -572,8 +568,6 @@
////////////////// //////////////////
// SCOPE EVENTS // // SCOPE EVENTS //
////////////////// //////////////////