Remove some console.logs
This commit is contained in:
parent
7abef64030
commit
6dee852cae
2 changed files with 2 additions and 3 deletions
|
@ -38,7 +38,6 @@ Item {
|
||||||
var objectArray = parseJSONString(json, query);
|
var objectArray = parseJSONString(json, query);
|
||||||
for ( var key in objectArray ) {
|
for ( var key in objectArray ) {
|
||||||
var jo = objectArray[key];
|
var jo = objectArray[key];
|
||||||
console.log(jo);
|
|
||||||
jsonModel.append( jo );
|
jsonModel.append( jo );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ import QtQuick 2.2
|
||||||
|
|
||||||
import net.frozentux.qmlcomponents 1.0
|
import net.frozentux.qmlcomponents 1.0
|
||||||
|
|
||||||
Rectangle {
|
MirrorWindow {
|
||||||
id: root
|
id: root
|
||||||
color: "black"
|
color: "black"
|
||||||
|
|
||||||
|
@ -51,8 +51,8 @@ Rectangle {
|
||||||
delegate: Text {
|
delegate: Text {
|
||||||
text: model.description
|
text: model.description
|
||||||
color: "white"
|
color: "white"
|
||||||
|
wrapMode: Text.Wrap
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
console.log("Text: " + text)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue