1
0
mirror of https://github.com/beestat/app.git synced 2025-07-09 03:04:07 -04:00

Removed unnecessary rerender_on_breakpoint_ declarations

This commit is contained in:
Jon Ziebell 2021-01-22 08:27:33 -05:00
parent 53bdc87003
commit 1ba9118798
17 changed files with 0 additions and 34 deletions

View File

@ -7,8 +7,6 @@ beestat.component.alert = function(alert) {
}; };
beestat.extend(beestat.component.alert, beestat.component); beestat.extend(beestat.component.alert, beestat.component);
beestat.component.alert.prototype.rerender_on_breakpoint_ = false;
beestat.component.alert.prototype.decorate_ = function(parent) { beestat.component.alert.prototype.decorate_ = function(parent) {
this.decorate_main_(parent); this.decorate_main_(parent);
this.decorate_detail_(parent); this.decorate_detail_(parent);

View File

@ -6,8 +6,6 @@ beestat.component.button = function() {
}; };
beestat.extend(beestat.component.button, beestat.component); beestat.extend(beestat.component.button, beestat.component);
beestat.component.button.prototype.rerender_on_breakpoint_ = false;
/** /**
* Decorate * Decorate
* *

View File

@ -7,8 +7,6 @@ beestat.component.button_group = function() {
}; };
beestat.extend(beestat.component.button_group, beestat.component); beestat.extend(beestat.component.button_group, beestat.component);
beestat.component.button_group.prototype.rerender_on_breakpoint_ = false;
/** /**
* Decorate * Decorate
* *

View File

@ -6,8 +6,6 @@ beestat.component.card = function() {
}; };
beestat.extend(beestat.component.card, beestat.component); beestat.extend(beestat.component.card, beestat.component);
beestat.component.card.prototype.rerender_on_breakpoint_ = false;
/** /**
* [get_class_name_recursive_ description] * [get_class_name_recursive_ description]
* *

View File

@ -13,8 +13,6 @@ beestat.component.chart = function() {
}; };
beestat.extend(beestat.component.chart, beestat.component); 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. * Decorate. Calls all the option getters and renders the chart.
* *

View File

@ -6,8 +6,6 @@ beestat.component.down_notification = function() {
}; };
beestat.extend(beestat.component.down_notification, beestat.component); 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. * Decorate a floating banner at the bottom of the page.
* *

View File

@ -4,8 +4,6 @@ beestat.component.icon = function(icon_name) {
}; };
beestat.extend(beestat.component.icon, beestat.component); beestat.extend(beestat.component.icon, beestat.component);
beestat.component.icon.prototype.rerender_on_breakpoint_ = false;
beestat.component.icon.prototype.decorate_ = function(parent) { beestat.component.icon.prototype.decorate_ = function(parent) {
var self = this; var self = this;

View File

@ -6,8 +6,6 @@ beestat.component.input = function() {
}; };
beestat.extend(beestat.component.input, beestat.component); beestat.extend(beestat.component.input, beestat.component);
beestat.component.input.prototype.rerender_on_breakpoint_ = false;
/** /**
* Decorate * Decorate
* *

View File

@ -24,8 +24,6 @@ beestat.component.input.text = function() {
}; };
beestat.extend(beestat.component.input.text, beestat.component.input); beestat.extend(beestat.component.input.text, beestat.component.input);
beestat.component.input.text.prototype.rerender_on_breakpoint_ = false;
/** /**
* Decorate * Decorate
* *

View File

@ -9,8 +9,6 @@ beestat.component.layout = function(rows) {
}; };
beestat.extend(beestat.component.layout, beestat.component); 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 * Decorate. Not much thinking to be done here; all the grid layout stuff is
* built in CSS. * built in CSS.

View File

@ -9,8 +9,6 @@ beestat.component.loading = function(text) {
}; };
beestat.extend(beestat.component.loading, beestat.component); beestat.extend(beestat.component.loading, beestat.component);
beestat.component.loading.prototype.rerender_on_breakpoint_ = false;
beestat.component.loading.prototype.decorate_ = function(parent) { beestat.component.loading.prototype.decorate_ = function(parent) {
if (this.text_ !== undefined) { if (this.text_ !== undefined) {
this.text_block_ = $.createElement('div') this.text_block_ = $.createElement('div')

View File

@ -6,8 +6,6 @@ beestat.component.logo = function() {
}; };
beestat.extend(beestat.component.logo, beestat.component); beestat.extend(beestat.component.logo, beestat.component);
beestat.component.logo.prototype.rerender_on_breakpoint_ = false;
/** /**
* Decorate * Decorate
* *

View File

@ -6,8 +6,6 @@ beestat.component.menu = function() {
}; };
beestat.extend(beestat.component.menu, beestat.component); beestat.extend(beestat.component.menu, beestat.component);
beestat.component.menu.prototype.rerender_on_breakpoint_ = false;
beestat.component.menu.prototype.decorate_ = function(parent) { beestat.component.menu.prototype.decorate_ = function(parent) {
var self = this; var self = this;

View File

@ -7,8 +7,6 @@ beestat.component.menu_item = function() {
}; };
beestat.extend(beestat.component.menu_item, beestat.component); beestat.extend(beestat.component.menu_item, beestat.component);
beestat.component.menu_item.prototype.rerender_on_breakpoint_ = false;
/** /**
* Decorate * Decorate
* *

View File

@ -6,8 +6,6 @@ beestat.component.metric = function() {
}; };
beestat.extend(beestat.component.metric, beestat.component); beestat.extend(beestat.component.metric, beestat.component);
beestat.component.metric.prototype.rerender_on_breakpoint_ = false;
/** /**
* Decorate * Decorate
* *

View File

@ -6,8 +6,6 @@ beestat.component.modal = function() {
}; };
beestat.extend(beestat.component.modal, beestat.component); beestat.extend(beestat.component.modal, beestat.component);
beestat.component.modal.prototype.rerender_on_breakpoint_ = false;
beestat.component.modal.prototype.decorate_ = function() { beestat.component.modal.prototype.decorate_ = function() {
var self = this; var self = this;

View File

@ -9,8 +9,6 @@ beestat.component.title = function(title) {
}; };
beestat.extend(beestat.component.title, beestat.component); beestat.extend(beestat.component.title, beestat.component);
beestat.component.title.prototype.rerender_on_breakpoint_ = false;
/** /**
* Decorate * Decorate
* *