1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-13 01:56:24 +02:00

fix eslint errors.

This commit is contained in:
Kushagra Gour
2016-11-15 11:08:54 +05:30
parent ba0f8d02a1
commit 75a57bca03
4 changed files with 21 additions and 19 deletions

View File

@ -3,7 +3,7 @@
var noticationContainerEL = $('#js-alerts-container');
function addNotification(msg) {
var n = document.createElement('div');
//var n = document.createElement('div');
// div.textContent = msg;
// noticationContainerEL.appendChild(n);
noticationContainerEL.textContent = msg;
@ -17,4 +17,4 @@
window.alertsService = {
add: addNotification
}
})();
})();