Changes between Version 1 and Version 2 of Ticket #11050
- Timestamp:
- Jun 1, 2010, 8:14:30 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11050 – Description
v1 v2 1 Reported from my co-worker:1 Reported by Karl Bishop (IBM) 2 2 3 3 The DojoDoc for: … … 5 5 states: 6 6 7 "Completely clears this storage system of all of it's values and7 "Completely clears this storage system of all of it's [sic] values and 8 8 keys. If 'namespace' is provided just clears the keys in that 9 9 namespace." … … 19 19 Workaround is trivial: 20 20 21 {{{ 21 22 dojo.forEach( dojox.storage.getNamespaces(), function(ns) { 22 23 //console.debug(F, "Purging storage for namespace: ", ns); … … 27 28 //console.debug(F, "Purging generic storage"); 28 29 dojox.storage.clear(); 29 30 }}}