File tree 2 files changed +1
-13
lines changed
2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change 1
1
Hustle: A persistent javascript queuing/messaging library
2
2
=============================================================
3
- __ NOTE:__ Don't use this library. It's pretty much unsupported at this point.
4
- The main reason being that IndexedDB is an * ok* idea, but browsers refuse to
5
- support it to the point where it's usable for anything more than a very simple
6
- key-value store. Hustle overreached the abilities of IndexedDB in both Chrome
7
- and Firefox, often causing failed operations or causing them to outright crash.
8
-
9
- This may not be the case further down the road, but until it runs reliably in
10
- most browsers, this library has two large stamps on it: ` unsupported ` and
11
- ` caution ` !
12
-
13
- ---
14
-
15
3
Hustle is a javascript queuing and messaging library built on top of IndexedDB.
16
4
17
5
The idea is that sometimes you have two pieces of an application that need to
Original file line number Diff line number Diff line change 1
1
( function ( window , undefined ) {
2
2
"use strict" ;
3
- var version = '0.2 .0' ;
3
+ var version = '0.3 .0' ;
4
4
var internal_db_version = 5 ;
5
5
6
6
var indexedDB = window . indexedDB || window . webkitIndexedDB || window . mozIndexedDB || window . oIndexedDB || window . msIndexedDB ;
You can’t perform that action at this time.
0 commit comments