/** * Visualize layer. */ beestat.layer.visualize = function() { beestat.layer.apply(this, arguments); }; beestat.extend(beestat.layer.visualize, beestat.layer); beestat.layer.visualize.prototype.decorate_ = function(parent) { /* * Set the overflow on the body so the scrollbar is always present so * highcharts graphs render properly. */ $('body').style({ 'overflow-y': 'scroll', 'background': beestat.style.color.bluegray.light, 'padding': '0 ' + beestat.style.size.gutter + 'px' }); (new beestat.component.header('visualize')).render(parent); // All the cards var cards = []; if (window.is_demo === true) { cards.push([ { 'card': new beestat.component.card.demo(), 'size': 12 } ]); } cards.push([ { 'card': new beestat.component.card.early_access(), 'size': 12 } ]); cards.push([ { 'card': new beestat.component.card.floor_plan_editor( beestat.setting('thermostat_id') ), 'size': 12 } ]); // Footer cards.push([ { 'card': new beestat.component.card.footer(), 'size': 12 } ]); (new beestat.component.layout(cards)).render(parent); };