- Updated app/integrated_crm_app.py, build.sh, conf/config.json - Added config.ini, schema.sql, send_email.py, test_db_conn.py - Added full wwwroot/ with bricks framework, all module frontends, login/main UI
16 lines
233 B
JavaScript
16 lines
233 B
JavaScript
var bricks = window.bricks || {};
|
|
|
|
bricks.Html = class extends bricks.JsWidget {
|
|
/*
|
|
{
|
|
html:
|
|
}
|
|
*/
|
|
constructor(opts){
|
|
super(opts);
|
|
this.dom_element.innerHTML = opts.html;
|
|
}
|
|
}
|
|
|
|
bricks.Factory.register('Html', bricks.Html);
|