diff --git a/js/component/alert.js b/js/component/alert.js index 4aa76e4..37eb0f3 100644 --- a/js/component/alert.js +++ b/js/component/alert.js @@ -7,8 +7,6 @@ beestat.component.alert = function(alert) { }; beestat.extend(beestat.component.alert, beestat.component); -beestat.component.alert.prototype.rerender_on_breakpoint_ = false; - beestat.component.alert.prototype.decorate_ = function(parent) { this.decorate_main_(parent); this.decorate_detail_(parent); diff --git a/js/component/button.js b/js/component/button.js index ad5382b..fd00ce0 100644 --- a/js/component/button.js +++ b/js/component/button.js @@ -6,8 +6,6 @@ beestat.component.button = function() { }; beestat.extend(beestat.component.button, beestat.component); -beestat.component.button.prototype.rerender_on_breakpoint_ = false; - /** * Decorate * diff --git a/js/component/button_group.js b/js/component/button_group.js index 1724131..e8cd300 100644 --- a/js/component/button_group.js +++ b/js/component/button_group.js @@ -7,8 +7,6 @@ beestat.component.button_group = function() { }; beestat.extend(beestat.component.button_group, beestat.component); -beestat.component.button_group.prototype.rerender_on_breakpoint_ = false; - /** * Decorate * diff --git a/js/component/card.js b/js/component/card.js index 3f06d74..7aaf714 100644 --- a/js/component/card.js +++ b/js/component/card.js @@ -6,8 +6,6 @@ beestat.component.card = function() { }; beestat.extend(beestat.component.card, beestat.component); -beestat.component.card.prototype.rerender_on_breakpoint_ = false; - /** * [get_class_name_recursive_ description] * diff --git a/js/component/chart.js b/js/component/chart.js index 05c8f22..bed1c5a 100644 --- a/js/component/chart.js +++ b/js/component/chart.js @@ -13,8 +13,6 @@ beestat.component.chart = function() { }; beestat.extend(beestat.component.chart, beestat.component); -beestat.component.chart.prototype.rerender_on_breakpoint_ = false; - /** * Decorate. Calls all the option getters and renders the chart. * diff --git a/js/component/down_notification.js b/js/component/down_notification.js index 3b0b6a0..e40b140 100644 --- a/js/component/down_notification.js +++ b/js/component/down_notification.js @@ -6,8 +6,6 @@ beestat.component.down_notification = function() { }; beestat.extend(beestat.component.down_notification, beestat.component); -beestat.component.down_notification.prototype.rerender_on_breakpoint_ = false; - /** * Decorate a floating banner at the bottom of the page. * diff --git a/js/component/icon.js b/js/component/icon.js index c16896c..e7afe4c 100644 --- a/js/component/icon.js +++ b/js/component/icon.js @@ -4,8 +4,6 @@ beestat.component.icon = function(icon_name) { }; beestat.extend(beestat.component.icon, beestat.component); -beestat.component.icon.prototype.rerender_on_breakpoint_ = false; - beestat.component.icon.prototype.decorate_ = function(parent) { var self = this; diff --git a/js/component/input.js b/js/component/input.js index 6d0079b..184c26f 100644 --- a/js/component/input.js +++ b/js/component/input.js @@ -6,8 +6,6 @@ beestat.component.input = function() { }; beestat.extend(beestat.component.input, beestat.component); -beestat.component.input.prototype.rerender_on_breakpoint_ = false; - /** * Decorate * diff --git a/js/component/input/text.js b/js/component/input/text.js index 88f0e32..7e407d7 100644 --- a/js/component/input/text.js +++ b/js/component/input/text.js @@ -24,8 +24,6 @@ beestat.component.input.text = function() { }; beestat.extend(beestat.component.input.text, beestat.component.input); -beestat.component.input.text.prototype.rerender_on_breakpoint_ = false; - /** * Decorate * diff --git a/js/component/layout.js b/js/component/layout.js index bdc9d39..91ba101 100644 --- a/js/component/layout.js +++ b/js/component/layout.js @@ -9,8 +9,6 @@ beestat.component.layout = function(rows) { }; beestat.extend(beestat.component.layout, beestat.component); -beestat.component.layout.prototype.rerender_on_breakpoint_ = false; - /** * Decorate. Not much thinking to be done here; all the grid layout stuff is * built in CSS. diff --git a/js/component/loading.js b/js/component/loading.js index b907282..0a25b37 100644 --- a/js/component/loading.js +++ b/js/component/loading.js @@ -9,8 +9,6 @@ beestat.component.loading = function(text) { }; beestat.extend(beestat.component.loading, beestat.component); -beestat.component.loading.prototype.rerender_on_breakpoint_ = false; - beestat.component.loading.prototype.decorate_ = function(parent) { if (this.text_ !== undefined) { this.text_block_ = $.createElement('div') diff --git a/js/component/logo.js b/js/component/logo.js index c68ac43..e5b6432 100644 --- a/js/component/logo.js +++ b/js/component/logo.js @@ -6,8 +6,6 @@ beestat.component.logo = function() { }; beestat.extend(beestat.component.logo, beestat.component); -beestat.component.logo.prototype.rerender_on_breakpoint_ = false; - /** * Decorate * diff --git a/js/component/menu.js b/js/component/menu.js index 7f5a467..9b5b0fa 100644 --- a/js/component/menu.js +++ b/js/component/menu.js @@ -6,8 +6,6 @@ beestat.component.menu = function() { }; beestat.extend(beestat.component.menu, beestat.component); -beestat.component.menu.prototype.rerender_on_breakpoint_ = false; - beestat.component.menu.prototype.decorate_ = function(parent) { var self = this; diff --git a/js/component/menu_item.js b/js/component/menu_item.js index 1d82d2a..552d62e 100644 --- a/js/component/menu_item.js +++ b/js/component/menu_item.js @@ -7,8 +7,6 @@ beestat.component.menu_item = function() { }; beestat.extend(beestat.component.menu_item, beestat.component); -beestat.component.menu_item.prototype.rerender_on_breakpoint_ = false; - /** * Decorate * diff --git a/js/component/metric.js b/js/component/metric.js index ca24ce2..a762cf6 100644 --- a/js/component/metric.js +++ b/js/component/metric.js @@ -6,8 +6,6 @@ beestat.component.metric = function() { }; beestat.extend(beestat.component.metric, beestat.component); -beestat.component.metric.prototype.rerender_on_breakpoint_ = false; - /** * Decorate * diff --git a/js/component/modal.js b/js/component/modal.js index e0261b0..4f3ac37 100644 --- a/js/component/modal.js +++ b/js/component/modal.js @@ -6,8 +6,6 @@ beestat.component.modal = function() { }; beestat.extend(beestat.component.modal, beestat.component); -beestat.component.modal.prototype.rerender_on_breakpoint_ = false; - beestat.component.modal.prototype.decorate_ = function() { var self = this; diff --git a/js/component/title.js b/js/component/title.js index 3a7ebfd..2e194bc 100644 --- a/js/component/title.js +++ b/js/component/title.js @@ -9,8 +9,6 @@ beestat.component.title = function(title) { }; beestat.extend(beestat.component.title, beestat.component); -beestat.component.title.prototype.rerender_on_breakpoint_ = false; - /** * Decorate *