fix account indexes, add base path in settings
This commit is contained in:
parent
5abf35c68c
commit
791efca714
11 changed files with 162 additions and 74 deletions
|
|
@ -21,13 +21,14 @@ angular
|
|||
|
||||
$logProvider.debugEnabled(true);
|
||||
$provide.decorator('$log', ['$delegate',
|
||||
function($delegate) {
|
||||
function($delegate, isDevel) {
|
||||
var historicLog = historicLogProvider.$get();
|
||||
|
||||
['debug', 'info', 'warn', 'error', 'log'].forEach(function(level) {
|
||||
if (isDevel && level == 'error') return;
|
||||
|
||||
var orig = $delegate[level];
|
||||
$delegate[level] = function() {
|
||||
|
||||
if (level == 'error')
|
||||
console.log(arguments);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue