summaryrefslogtreecommitdiffstats
path: root/examples/declarative/snow/create.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/snow/create.js')
-rw-r--r--examples/declarative/snow/create.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/examples/declarative/snow/create.js b/examples/declarative/snow/create.js
deleted file mode 100644
index 2bdae4a..0000000
--- a/examples/declarative/snow/create.js
+++ /dev/null
@@ -1,12 +0,0 @@
-var myComponent = null;
-
-function createNewBlock() {
- if (myComponent == null)
- myComponent = createComponent("ImageBatch.qml");
-
- var obj = myComponent.createObject();
- obj.parent = layout;
- obj.offset = maximumColumn + 1;
- obj.ref = imagePanel;
- maximumColumn += 5;
-}