From 0ae267aa4432d7cc8c03884085885674d4ed4f65 Mon Sep 17 00:00:00 2001 From: Sergei Date: Fri, 15 Dec 2017 20:29:23 +0800 Subject: [PATCH] various fixes --- mini-toastr.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mini-toastr.js b/mini-toastr.js index e55ef8c9..fb7a241d 100644 --- a/mini-toastr.js +++ b/mini-toastr.js @@ -184,7 +184,7 @@ const miniToastr = { config.animation(notificationElem, null) } - if (title) addElem(notificationElem, title, CLASSES.title) + if (title) addElem(notificationElem, title, TITLE_CLASS) if (config.icons[type]) createIcon(notificationElem, type, config) if (message) addElem(notificationElem, message, MESSAGE_CLASS) diff --git a/package.json b/package.json index d97dd455..533ce6ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mini-toastr", - "version": "0.7.0", + "version": "0.7.1", "description": "Non-blocking toaster notifications", "main": "mini-toastr.js", "scripts": {