add debug messages when a checkbox is pressed
[myslice.git] / plugins / googlemap / static / js / googlemap.js
index 34b2b8d..50d921e 100644 (file)
@@ -102,7 +102,7 @@ googlemap_debug_detailed=false;
                 throw "Not implemented";
                 break;
             }
-           return unfold.escape_id(key_value).replace(/\\/g, '');
+           return this.escape_id(key_value).replace(/\\/g, '');
        },          
 
        // return { marker: gmap_marker, ul : <ul DOM> }
@@ -132,6 +132,7 @@ googlemap_debug_detailed=false;
            // the callback for when a user clicks
            // NOTE: this will *not* be called for changes done by program
            checkbox.change( function (e) {
+               if (googlemap_debug) messages.debug("googlemap click handler checked= " + this.checked + " hrn=" + hrn);
                manifold.raise_event (googlemap.options.query_uuid, 
                                      this.checked ? SET_ADD : SET_REMOVED, hrn);
            });
@@ -174,7 +175,7 @@ googlemap_debug_detailed=false;
            var checkbox = this.create_record_checkbox (record, ul, false);
            if ( ! this.key in record ) return;
             var key_value = record[this.key];
-           var hrn = unfold.escape_id(key_value).replace(/\\/g, '');
+           var hrn = this.escape_id(key_value).replace(/\\/g, '');
             this.by_hrn[hrn] = {
                checkbox: checkbox,
                // xxx Thierry sept 2013