mirror of
https://github.com/beestat/app.git
synced 2025-05-24 02:14:03 -04:00
18 lines
648 B
JavaScript
18 lines
648 B
JavaScript
/**
|
|
* Early access
|
|
*/
|
|
beestat.component.card.early_access = function() {
|
|
beestat.component.card.apply(this, arguments);
|
|
};
|
|
beestat.extend(beestat.component.card.early_access, beestat.component.card);
|
|
|
|
/**
|
|
* Decorate
|
|
*
|
|
* @param {rocket.Elements} parent
|
|
*/
|
|
beestat.component.card.early_access.prototype.decorate_contents_ = function(parent) {
|
|
parent.style('background', beestat.style.color.green.base);
|
|
parent.appendChild($.createElement('p').innerText('Welcome to the early access release for Visualize. Currently this is limited to the floor plan builder. The 3D view with sensor data visualizations is still a work in progress.'));
|
|
};
|