From 055499563cf5347fdcbba5c2cd4a58c58d1f8c7c Mon Sep 17 00:00:00 2001 From: Grant Nestor Date: Fri, 5 Aug 2016 09:30:54 -0700 Subject: [PATCH] Use classic style for trusted notification --- notebook/static/notebook/js/notificationarea.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebook/static/notebook/js/notificationarea.js b/notebook/static/notebook/js/notificationarea.js index e850af087..36b3dd60d 100644 --- a/notebook/static/notebook/js/notificationarea.js +++ b/notebook/static/notebook/js/notificationarea.js @@ -351,9 +351,9 @@ define([ // Notebook trust events this.events.on('trust_changed.Notebook', function (event, trusted) { if (trusted) { - tnw.info("Trusted"); + tnw.set_message("Trusted"); } else { - tnw.danger("Not Trusted", undefined, function() { + tnw.set_message("Not Trusted", undefined, function() { that.notebook.trust_notebook(); return false; });