Commit 14e4f128 authored by obscuren's avatar obscuren

Removed old debug method

parent 95ba340d
function debug(/**/) {
var args = arguments;
var msg = ""
for(var i = 0; i < args.length; i++){
if(typeof args[i] === "object") {
msg += " " + JSON.stringify(args[i])
} else {
msg += " " + args[i]
}
}
postData({call:"debug", args:[msg]})
document.getElementById("debug").innerHTML += "<br>" + msg
}
// Helper function for generating pseudo callbacks and sending data to the QML part of the application // Helper function for generating pseudo callbacks and sending data to the QML part of the application
function postData(data, cb) { function postData(data, cb) {
data._seed = Math.floor(Math.random() * 1000000) data._seed = Math.floor(Math.random() * 1000000)
...@@ -50,9 +35,3 @@ navigator.qt.onmessage = function(ev) { ...@@ -50,9 +35,3 @@ navigator.qt.onmessage = function(ev) {
} }
} }
} }
window.onerror = function(message, file, lineNumber, column, errorObj) {
debug(file, message, lineNumber+":"+column, errorObj);
return false;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment