Compare commits

..

No commits in common. "30b9040c6368235f2d2b2b2e7515e350e004d751" and "0606bcb4d9c726ea0bf17136c0e654333353832d" have entirely different histories.

3 changed files with 2 additions and 10 deletions

View File

@ -40,15 +40,6 @@ hr {
border-radius: 30%;
background-color: #f5f5f5;
}
.tabular {
border-radius: 8px;
padding: 5px;
margin: 5px;
background-color: #f5f5f5;
border: 1px solid #888888;
}
.card {
border-radius: 8px;
padding: 5px;

View File

@ -37,6 +37,8 @@ bricks.dom_on_off_observer=new MutationObserver((mutations)=>{
}
}
});
bricks.resize_observer.observe(document.body,
{ childList: true, subtree: true });
bricks.dom_on_off_observer.observe(document.body,
{ childList: true, subtree: true });
function addParamsToUrl(url, params, widget) {

View File

@ -41,7 +41,6 @@ bricks.JsWidget = class {
if (this.bgimage){
this.set_bg_image(this.bgimage);
}
bricks.resize_observer.observe(this.dom_element);
}
set_bg_image(url){
var d = this.dom_element;