diff options
author | zefanja <zefanja@freenet.de> | 2013-08-06 20:58:13 +0700 |
---|---|---|
committer | zefanja <zefanja@freenet.de> | 2013-08-06 20:58:13 +0700 |
commit | c40d2cdbdbfe16dae6ee46f1e317b024a84e284f (patch) | |
tree | addd2a6a0bfaf872f70d980ee0ea27a457d6af0a /source | |
parent | eda93a23da26dca834aa0e0b1b524d7920247321 (diff) | |
download | biblez-ng-c40d2cdbdbfe16dae6ee46f1e317b024a84e284f.tar.gz |
* removed requirejs from submodules
Diffstat (limited to 'source')
-rw-r--r-- | source/App.css | 4 | ||||
-rw-r--r-- | source/main.js | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/source/App.css b/source/App.css index 9f17bc1..f910695 100644 --- a/source/App.css +++ b/source/App.css @@ -2,6 +2,10 @@ Put anything you reference with "url()" in ../assets/ This way, you can minify your application, and just remove the "source" folder for production */ +.background { + background: url("../assets/background.png"); +} + .nice-padding { padding: 10px; } diff --git a/source/main.js b/source/main.js index 55462eb..16c6c99 100644 --- a/source/main.js +++ b/source/main.js @@ -23,7 +23,7 @@ enyo.kind({ {kind: "onyx.Input", placeholder: "Enter a passage...", onchange: "handlePassage", name: "passageInput", value: "Matt 1"} ]}*/ ]}, - {kind: "enyo.Scroller", touch: true, fit: true, components: [ + {kind: "enyo.Scroller", touch: true, fit: true, classes: "background", components: [ {kind: "onyx.Spinner", name: "spinner", classes: "onyx-light"}, {name: "main", classes: "nice-padding", allowHtml: true} ]}, |