diff options
author | zefanja <zefanja@freenet.de> | 2014-01-17 14:52:44 +0700 |
---|---|---|
committer | zefanja <zefanja@freenet.de> | 2014-01-17 14:52:44 +0700 |
commit | 60716d99e0b77ee2ef5a8c1ec56ff2b0ab7866e6 (patch) | |
tree | cfcac24d5451dd9a3643b1bae8c5d5951385c0a0 /source/bcSelector.js | |
parent | d241fd8583ab4dd3d6fd2e660db47582adffe72e (diff) | |
download | biblez-ng-60716d99e0b77ee2ef5a8c1ec56ff2b0ab7866e6.tar.gz |
* added spinner to crossRef popup
* added onyx.button to bcSelector
* fixed bug in handle crossRef setting
Diffstat (limited to 'source/bcSelector.js')
-rw-r--r-- | source/bcSelector.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/bcSelector.js b/source/bcSelector.js index 25c59ac..43a5231 100644 --- a/source/bcSelector.js +++ b/source/bcSelector.js @@ -10,7 +10,7 @@ enyo.kind({ module: null }, components: [ - {name: "bcPanel", kind: "Panels", arrangerKind: "CardArranger", animate: false, fit: true, components: [ + {name: "bcPanel", kind: "Panels", arrangerKind: "CardArranger", fit: true, animate: false, components: [ {name: "bookPanel", kind: "enyo.FittableRows", components: [ {kind: "onyx.Toolbar", components: [ {kind: "onyx.IconButton", src: "assets/back.png", ontap: "doBack"}, @@ -18,7 +18,7 @@ enyo.kind({ ]}, {kind: "enyo.Scroller", fit: true, touch: true, components: [ {name: "bookRepeater", kind: "Repeater", count: 0, onSetupItem: "setBookItems", components: [ - {name: "bookItem", classes: "bc-item onyx-button", ontap: "handleBook"} + {name: "bookItem", kind: "onyx.Button", classes: "bc-item", ontap: "handleBook"} ]} ]} ]}, @@ -29,7 +29,7 @@ enyo.kind({ ]}, {kind: "enyo.Scroller", fit: true, touch: true, components: [ {name: "chapterRepeater", kind: "Repeater", count: 0, onSetupItem: "setChapterItems", components: [ - {name: "chapterItem", classes: "bc-item onyx-button", ontap: "handleChapter"} + {name: "chapterItem", kind: "onyx.Button", classes: "bc-item", ontap: "handleChapter"} ]} ]} ]} |