diff options
Diffstat (limited to 'lib/offline-support.js')
-rw-r--r-- | lib/offline-support.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/offline-support.js b/lib/offline-support.js index e0b1c3b..d75979d 100644 --- a/lib/offline-support.js +++ b/lib/offline-support.js @@ -47,7 +47,6 @@ RHBugzillaPage.prototype.serializeForm = function(form) { */ function serializeControl(element) { var val = element.value; - // console.log("val.toSource() = " + val.toSource()); /* * on HTMLSelectElement we have an attribute 'type' of type DOMString, * readonly The type of this form control. This is the string @@ -79,12 +78,10 @@ RHBugzillaPage.prototype.serializeForm = function(form) { }; //RHBugzillaPage.prototype.submitCallback = function(evt) { -// console.log("Submit Callback!"); // if (jetpack.__parent__.navigator.onLine) { // var serForm = this // .serializeForm(jetpack.tabs.focused.contentWindow.document.forms // .namedItem("changeform")); -//// console.log("serForm:\n" + serForm.toSource()); // } else { // var serForm = this // .serializeForm(jetpack.tabs.focused.contentWindow.document.forms @@ -134,7 +131,6 @@ RHBugzillaPage.prototype.serializeForm = function(form) { req.onreadystatechange = function(aEvt) { if (req.readyState == 4) { if (req.status == 200) { - console.log("Sent form for bug " + bugID); delete myStorage.forms[bugID]; } else { console.error("Sending form for bug " + bugID + "failed!"); |