aboutsummaryrefslogtreecommitdiffstats
path: root/main.js
blob: 40a9faec78bbc4c03f032cbb52381c5e3136b46a (plain)
1
2
3
4
5
6
7
8
9
(function() {
	var cf = new ContentFlow('character-select', {
		reflectionColor: "#000000",
		
		onclickActiveItem: function(item) {
			alert('hello');
		}
	});
})();