aboutsummaryrefslogblamecommitdiffstats
path: root/source/kinds.js
blob: 699ef0f1d3363b2b552655eed4ad73dd57bd391b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                  
enyo.kind({
	name: "VerseList",
	kind: "List",
	published: {
		clientStyle: "display: inline;"
	},

	create: function () {
		this.inherited(arguments);
		this.$.port.addRemoveClass("verse-view", true);
		this.clientStyleChanged();
	},

	clientStyleChanged: function () {
		this.$.generator.setClientStyle(this.clientStyle);
	}

});