Browse Source

try on emoji in Informer messages

Artur Paikin 8 years ago
parent
commit
c7bd306964
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/core/Core.js

+ 2 - 2
src/core/Core.js

@@ -342,12 +342,12 @@ class Uppy {
     const online = status || window.navigator.onLine
     if (!online) {
       this.emit('is-offline')
-      this.emit('informer', 'No internet connection', 'error', 0)
+      this.emit('informer', '⚠️ No internet connection', 'error', 0)
       this.wasOffline = true
     } else {
       this.emit('is-online')
       if (this.wasOffline) {
-        this.emit('informer', 'Connected!', 'success', 3000)
+        this.emit('informer', 'Connected 👌🏼', 'success', 3000)
         this.wasOffline = false
       }
     }