Lines Matching defs:key
21 setValue: function(key,val){
26 delete this.data[key];
29 this.data[key] = val;
34 jQuery.each(_this.data, function (key, val) {
35 if (_this.data.hasOwnProperty(key)) {
36 text.push(encodeURIComponent(key)+'#'+encodeURIComponent(val));
46 * @param def default value if key does not exist; if not set, returns undefined by default
48 getValue: function(key, def){
50 return this.data.hasOwnProperty(key) ? this.data[key] : def;