// Generated by CoffeeScript 1.10.0
(function() {
var body, text;
text = {
columns: ["坤輿
", "萬國
", "全圗
"]
};
body = d3.select('body');
body.append('div').attrs({
"class": 'script'
}).html(text.columns.reduce((function(str, value) {
return str + value;
}), ''));
body.append('div').attrs({
"class": 'switch',
title: 'Latin mode: horizontal (left-right) from top to bottom'
}).on('click', function() {
var asian_flag;
asian_flag = d3.select('.script').classed('vertical_rl');
d3.select(this).attrs({
title: asian_flag ? 'Latin mode: horizontal (left-right) from top to bottom' : 'Asian mode: vertical (top-bottom) from right to left'
});
d3.select(this).classed('icon_vertical_rl', !asian_flag);
return d3.select('.script').classed('vertical_rl', !asian_flag);
});
}).call(this);