diff options
author | Marvin Borner | 2018-05-06 18:24:34 +0200 |
---|---|---|
committer | Marvin Borner | 2018-05-06 18:24:34 +0200 |
commit | 59293826f017156ed41696dd01b846fe37446821 (patch) | |
tree | 6caafa4f076edb753707c79859de53788a87866c /main/app/sprinkles/core/assets/userfrosting | |
parent | 42f9f655b48c5b9b8be58a3f037e3edf8c339a4d (diff) |
Finished chat verification, added console colors
Diffstat (limited to 'main/app/sprinkles/core/assets/userfrosting')
-rw-r--r-- | main/app/sprinkles/core/assets/userfrosting/js/uf-alerts.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/app/sprinkles/core/assets/userfrosting/js/uf-alerts.js b/main/app/sprinkles/core/assets/userfrosting/js/uf-alerts.js index 98fbea0..a569522 100644 --- a/main/app/sprinkles/core/assets/userfrosting/js/uf-alerts.js +++ b/main/app/sprinkles/core/assets/userfrosting/js/uf-alerts.js @@ -128,7 +128,7 @@ _fetchSuccess: function (alerts) { if (alerts != null) this.alerts = $.merge(this.alerts, alerts); this.$element.trigger('fetch.' + this._name); - console.log("[ALERT LOGGER] FETCHED ALERTS"); + console.log("%c[ALERT LOGGER] FETCHED ALERTS", "color: blue"); }, /** * Failure callback for fetch @@ -153,7 +153,7 @@ message: options[1] }); - console.log("[ALERT LOGGER] PUSHED ALERT"); + console.log("%c[ALERT LOGGER] PUSHED ALERT", "color: blue"); return this.$element; }, /** @@ -168,7 +168,7 @@ $.when(this._newAlertsPromise).then(this._render.bind(this)); } - console.log("[ALERT LOGGER] RENDERED ALERT"); + console.log("%c[ALERT LOGGER] RENDERED ALERT", "color: blue"); return this.$element; }, /* |