-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Obinwanne Hill
committed
Nov 18, 2015
1 parent
3635ba3
commit 0bd84bf
Showing
5 changed files
with
16 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "restive", | ||
"version": "1.3.4", | ||
"version": "1.3.6", | ||
"homepage": "https://github.com/obihill/restive.js", | ||
"authors": [ | ||
"Obinwanne Hill <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -612,7 +612,7 @@ function microtime (get_as_float) { | |
return MD5_hexhash(s); | ||
} | ||
})(); | ||
|
||
|
||
/*! json2.js | @link https://github.com/douglascrockford/JSON-js | @copyright Douglas Crockford <[email protected]> */ | ||
|
||
// Create a JSON object only if one does not already exist. We create the | ||
|
@@ -1291,7 +1291,7 @@ if (typeof JSON !== 'object') { | |
|
||
})( this ); | ||
|
||
|
||
|
||
/*! jQuery resize event - v1.1 | @link http://benalman.com/projects/jquery-resize-plugin/ | Copyright (c) 2010 "Cowboy" Ben Alman | @license MIT/GPL */ | ||
// Script: jQuery resize event | ||
// | ||
|
@@ -1917,7 +1917,7 @@ function getUrl() | |
|
||
})(jQuery); | ||
|
||
|
||
|
||
/*! Restive.JS | @copyright 2013 Obinwanne Hill */ | ||
var Restive = (function(window, document, $) { | ||
|
||
|
@@ -2132,7 +2132,10 @@ var Restive = (function(window, document, $) { | |
} | ||
catch (e) | ||
{ | ||
if (/QUOTA_?EXCEEDED/i.test(e.name)) { | ||
var is_local_storage_notset_bool = /localStorage.*?(undefined|denied|null)|setItem.*?(undefined|null)|security *error.*?dom +exception +18/i.test(e.message); | ||
var is_quota_exceeded_bool = /quota.*?(exceeded|reached)/i.test(e.name); | ||
|
||
if (is_local_storage_notset_bool || is_quota_exceeded_bool) { | ||
return true; | ||
} | ||
} | ||
|
@@ -2231,7 +2234,7 @@ var Restive = (function(window, document, $) { | |
} | ||
catch(e){ | ||
alert(e); | ||
|
||
console.log(e); | ||
} | ||
} | ||
|
||
|
@@ -4565,7 +4568,7 @@ var Restive = (function(window, document, $) { | |
return Restive; | ||
|
||
})(window, document, jQuery); | ||
|
||
|
||
/* | ||
* Restive.JS Plugin v1.3.3 | ||
* http://restivejs.com | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.