@logux/client
Advanced tools
Comparing version 0.8.4 to 0.8.5
# Change Log | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
## 0.8.5 | ||
* Remove `global` from `IndexedStore` (by Neville Franks). | ||
## 0.8.4 | ||
@@ -5,0 +8,0 @@ * Fix `log()` for `logux/unsubscribe` actions. |
@@ -71,4 +71,4 @@ import { isFirstOlder } from '@logux/core' | ||
store.db.close() | ||
if (global.document && global.document.reload) { | ||
global.document.reload() | ||
if (typeof document !== 'undefined' && document.reload) { | ||
document.reload() | ||
} | ||
@@ -268,3 +268,3 @@ } | ||
store.db.close() | ||
await promisify(global.indexedDB.deleteDatabase(store.name)) | ||
await promisify(indexedDB.deleteDatabase(store.name)) | ||
} | ||
@@ -271,0 +271,0 @@ } |
{ | ||
"name": "@logux/client", | ||
"version": "0.8.4", | ||
"version": "0.8.5", | ||
"description": "Logux base components to build web client", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -47,3 +47,3 @@ # Logux Client [![Cult Of Martians][cult-img]][cult] | ||
import { CrossTabClient, badge, badgeEn, log } from '@logux/client' | ||
import { badgeStyles } from '@logux/client/badge/style' | ||
import { badgeStyles } from '@logux/client/badge/styles' | ||
@@ -50,0 +50,0 @@ let userId = document.querySelector('meta[name=user]').content |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
125805
54
3768