ieuserdata.js
No description.

File Location

/goog/storage/mechanism/ieuserdata.js

Classes

goog.storage.mechanism.IEUserData
Provides a storage mechanism using IE userData.

Public Protected Private

Global Functions

goog.storage.mechanism.IEUserData.decodeKey_(key) string
Decodes a dot-encoded and character-prefixed key. See encodeKey_ documentation for encoding details.
Arguments:
key : string
The key to be decoded.
Returns: string  The decoded key.
code »
goog.storage.mechanism.IEUserData.encodeKey_(key) string
Encodes anything other than [-a-zA-Z0-9_] using a dot followed by hex, and prefixes with underscore to form a valid and safe HTML attribute name. We use URI encoding to do the initial heavy lifting, then escape the remaining characters that we can't use. Since a valid attribute name can't contain the percent sign (%), we use a dot (.) as an escape character.
Arguments:
key : string
The key to be encoded.
Returns: string  The encoded key.
code »

Directory mechanism

File Reference