miscell cosmetic
[myslice.git] / plugins / tabs / static / js / tabs.js
index bfd568a..f9cd2a7 100644 (file)
@@ -33,7 +33,6 @@ var tabs_helper = {
        if (tabs_helper.debug) messages.debug ("setting active for " + domid + " to active_domid=" + active_domid);
        // build something like "#uldomid a[href='#active_domid']"
        var selector="#"+domid+" a[href='#"+active_domid+"']";
-       console.log("selector="+selector);
        $(selector).tab('show');
     },
     set_from_saved_active_domid : function (domid) {
@@ -58,7 +57,6 @@ var tabs_helper = {
            // persistent-active
            var domid=$(e.target).closest(".persistent-active").attr('id');
            tabs_helper.store_active_domid(domid,active_domid);
-           console.log("CLICKED domid="+domid+" active_domid="+active_domid);
        });
     },