cody

Results 3 issues of cody

Please remove _prefs.clear in reset method to avoid clearing all data for Shared Preferences if used in App elsewhere. Better clear only used values. A prefix for the names would...

IE can not outerHTML an SVGElement. Also it add some NS stuff if its extracted via Serializer or in my case Tag clone. Here is an outerHTML prototype for SVGElement...

In Line: var byteString = atob(escape(dataUrl)); Changed to: var byteString = atob(dataUrl); remove the escaping to prevent error in decoding base64. the last '==' will get escaped to '%3D%3d'