Remove some console.logs

This commit is contained in:
Oscar Andreasson 2015-12-22 22:47:08 +01:00
parent 7abef64030
commit 6dee852cae
2 changed files with 2 additions and 3 deletions

View file

@ -38,7 +38,6 @@ Item {
var objectArray = parseJSONString(json, query);
for ( var key in objectArray ) {
var jo = objectArray[key];
console.log(jo);
jsonModel.append( jo );
}
}

View file

@ -10,7 +10,7 @@ import QtQuick 2.2
import net.frozentux.qmlcomponents 1.0
Rectangle {
MirrorWindow {
id: root
color: "black"
@ -51,8 +51,8 @@ Rectangle {
delegate: Text {
text: model.description
color: "white"
wrapMode: Text.Wrap
Component.onCompleted: {
console.log("Text: " + text)
}
}
}