mavo
mavo copied to clipboard
Create web applications entirely by writing HTML and CSS!
Right now this is terra incognita, but we should make sure Mavo works in Shadow DOM. If it does (or if it's not too difficult to make it work), we...
While allowing expressions in attributes is certainly convenient, in certain cases it has annoying side effects. For example, putting expressions in `img/@src` fires a pointless HTTP request, before the expression...
So that authors could do the following: ```html Add ```
Testcase: https://codepen.io/leaverou/pen/wvPrOqm?editors=1100 I think this is a regression, @DmitrySharabin can you verify? IIRC we have a test about using property names that conflict with function names, but not collection property...
We use `requestAnimationFrame()` for each computation cycle, which as it turns out [is paused in inactive tabs](https://stackoverflow.com/questions/15871942/how-do-browsers-pause-change-javascript-when-tab-or-window-is-not-active). While in many cases this doesn't matter, @karger came across a case where...
There is absolutely no reason not to set the whole message, since it's pretty much the same across commits ("Updated foo.json").
Testcase: https://codepen.io/dmitrysharabin/pen/vYmOYdg?editors=1000 Git bisect showed this commit as the first bad one: 6acb4088d3f538b81b59bb7bde30173ff6f6f62b. Interestingly, [this issue](https://github.com/mavoweb/mavo/issues/716) found by @karger is not the case anymore.
Currently we have very few MS functions with 2 word names (thanks @DmitrySharabin for hunting them down): * `groupby()` * `tolast()` * `fromlast()` Given that Mavo is generally case insensitive,...
While trying to do a custom nav bar, I'm not able to make work all functions Edit / save /clear => Works import/export and all others => not able them...
While trying to do a rating star input element ([https://codepen.io/GATIGA/pen/NWaeXoy](https://codepen.io/GATIGA/pen/NWaeXoy ) I came with this issue: collection of input type radio, are not saving data separate test here: [https://codepen.io/GATIGA/pen/XWeoPdB](https://codepen.io/GATIGA/pen/XWeoPdB)