Givan
Givan
Hi Resizable elements have resizable set to true, for example image component https://github.com/givanz/VvvebJs/blob/master/libs/builder/components-html.js#L84-L84 You can add the attribute to your components or edit https://github.com/givanz/VvvebJs/blob/master/libs/builder/builder.js#L1321 and change ```js if (Vvveb.component.resizable) {...
Hi The bootstrap button component has "btn" class set for matching and this will match any element having the class. ```js Vvveb.Components.extend("_base", "html/btn", { classes: ["btn", "btn-link"], . . }...
Hi A bug in the undo code was fixed in the last commit, please check if it's working now.
Thanks for the fix, I included it in the last commit.
Thank you, you only need to configure sass to compile files from scss/ folder to css/ no dependencies needed except Bootstrap and jQuery but they are bundled to make it...
I want to keep it very simple and avoid adding a build system as currently there are only a few dependencies and there is only a scss > css conversion...
Hi Please make sure that you have php configured and working for your nginx server it seems that nginx does not process save.php as a php file. If you have...
Hi Thank you. Inline style has higher priority, you can either strip all style attributes after loading the page or if this is not possible you can add !important to...
Hi Thanks for the suggestion, I will add more options for drag and drop including the option to use a placeholder instead of actual element for dragging to avoid the...
Hi This bug was caused by empty images that had "none" value that caused a http request to http://none and was fixed in a previous commit https://github.com/givanz/VvvebJs/blob/master/libs/builder/plugin-media.js#L10