aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzefanja <zefanja@freenet.de>2013-12-24 13:41:43 +0700
committerzefanja <zefanja@freenet.de>2013-12-24 13:41:43 +0700
commitb97addf72f68d3add8852057666a0c4399713655 (patch)
tree50d2f5d193d4209ce667d386bced03698febacbf
parent6199afa7316230243d86f66863b5ca028ac534f9 (diff)
downloadbiblez-ng-b97addf72f68d3add8852057666a0c4399713655.tar.gz
* added popup.js
-rw-r--r--source/popup.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/popup.js b/source/popup.js
new file mode 100644
index 0000000..b0d2e0b
--- /dev/null
+++ b/source/popup.js
@@ -0,0 +1,17 @@
+enyo.kind({
+ name: "biblez.versePopup",
+ kind: "onyx.Popup",
+ classes: "verse-popup",
+ components: [
+ {kind: "enyo.FittableRows", components: [
+ {kind: "enyo.FittableColumns", components: [
+ {content: "Bookmark", classes: "verse-popup-cell cell-top-left"},
+ {content: "Note", classes: "verse-popup-cell cell-top-right"},
+ ]},
+ {kind: "enyo.FittableColumns", components: [
+ {content: "Highlight", classes: "verse-popup-cell"},
+ {content: "Copy&Share", classes: "verse-popup-cell cell-bottom-right"},
+ ]}
+ ]}
+ ]
+}); \ No newline at end of file