Commit 79d5fd59 authored by Evren Kutar's avatar Evren Kutar

v0.0.3 sidebar menu name fixes

loading bar css for transparent background
parent 1d1f8210
...@@ -1089,4 +1089,16 @@ table.dataTable thead .sorting:after { ...@@ -1089,4 +1089,16 @@ table.dataTable thead .sorting:after {
position:absolute; position:absolute;
right:0; right:0;
top:auto; top:auto;
}
/* loading bar */
.loadingbarfullsize{
z-index:10001;
position:fixed;
width:100%;
height:100%;
top: 0;
left: 0;
background: rgba(0, 0, 2, 0.2);
} }
\ No newline at end of file
...@@ -49,10 +49,12 @@ app.config(['$routeProvider', function ($routeProvider) { ...@@ -49,10 +49,12 @@ app.config(['$routeProvider', function ($routeProvider) {
$rootScope.$on("$routeChangeStart", function (event, next, current) { $rootScope.$on("$routeChangeStart", function (event, next, current) {
// will be used when needed // will be used when needed
}); });
}).config(['$httpProvider', function($httpProvider) { }).config(['$httpProvider', function ($httpProvider) {
// to send cookies CORS // to send cookies CORS
$httpProvider.defaults.withCredentials = true; $httpProvider.defaults.withCredentials = true;
}]).run(function (gettextCatalog) { }]).run(function (gettextCatalog) {
gettextCatalog.setCurrentLanguage('tr'); gettextCatalog.setCurrentLanguage('tr');
gettextCatalog.debug = true; gettextCatalog.debug = true;
}); }).config(['cfpLoadingBarProvider', function (cfpLoadingBarProvider) {
\ No newline at end of file cfpLoadingBarProvider.spinnerTemplate = '<div><span class="fa fa-spinner loadingbarfullsize"></div>';
}]);
\ No newline at end of file
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<a href="" ng-click="check($index+1)"><i class="fa fa-wrench fa-fw"></i> {{ item[0] }}<span <a href="" ng-click="check($index+1)"><i class="fa fa-wrench fa-fw"></i> {{ item[0] }}<span
class="fa arrow"></span></a> class="fa arrow"></span></a>
<ul class="nav nav-second-level"> <ul class="nav nav-second-level">
<li ng-repeat="(k, v) in item[1]"><a href="#/{{v[1]}}" ng-click="breadcrumb([item[0], v[0]])">{{v[1]}}</a></li> <li ng-repeat="(k, v) in item[1]"><a href="#/{{v[1]}}" ng-click="breadcrumb([item[0], v[0]])">{{v[0]}}</a></li>
</ul> </ul>
<!-- /.nav-second-level --> <!-- /.nav-second-level -->
</li> </li>
......
This diff is collapsed.
...@@ -1104,6 +1104,18 @@ table.dataTable thead .sorting:after { ...@@ -1104,6 +1104,18 @@ table.dataTable thead .sorting:after {
top:auto; top:auto;
} }
/* loading bar */
.loadingbarfullsize{
z-index:10001;
position:fixed;
width:100%;
height:100%;
top: 0;
left: 0;
background: rgba(0, 0, 2, 0.2);
}
/* /*
* metismenu - v1.1.3 * metismenu - v1.1.3
* Easy menu jQuery plugin for Twitter Bootstrap 3 * Easy menu jQuery plugin for Twitter Bootstrap 3
......
...@@ -949,7 +949,7 @@ angular.module("shared/templates/directives/sidebar.html", []).run(["$templateCa ...@@ -949,7 +949,7 @@ angular.module("shared/templates/directives/sidebar.html", []).run(["$templateCa
" <a href=\"\" ng-click=\"check($index+1)\"><i class=\"fa fa-wrench fa-fw\"></i> {{ item[0] }}<span\n" + " <a href=\"\" ng-click=\"check($index+1)\"><i class=\"fa fa-wrench fa-fw\"></i> {{ item[0] }}<span\n" +
" class=\"fa arrow\"></span></a>\n" + " class=\"fa arrow\"></span></a>\n" +
" <ul class=\"nav nav-second-level\">\n" + " <ul class=\"nav nav-second-level\">\n" +
" <li ng-repeat=\"(k, v) in item[1]\"><a href=\"#/{{v[1]}}\" ng-click=\"breadcrumb([item[0], v[0]])\">{{v[1]}}</a></li>\n" + " <li ng-repeat=\"(k, v) in item[1]\"><a href=\"#/{{v[1]}}\" ng-click=\"breadcrumb([item[0], v[0]])\">{{v[0]}}</a></li>\n" +
" </ul>\n" + " </ul>\n" +
" <!-- /.nav-second-level -->\n" + " <!-- /.nav-second-level -->\n" +
" </li>\n" + " </li>\n" +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment