You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 21, 2017. It is now read-only.
If all those attributes, class, id and href were not part of the first argument, only an empty a node would be cached and the rest of the attributes would have to be assembled one by one, every time that the view is called.
MSX should be able to distinguish attributes that are constant:
<div class="panel-heading">
from those that are variable, that is, that get their value from an expression:
<span class={g.disabled()?'text-muted':''}>
The first should result in:
m('div.panel-heading')
The second in:
m('span',{class:g.disabled()?'text-muted':''})
This would greatly speed up the refresh process.
The text was updated successfully, but these errors were encountered:
Mithirl caches nodes created via the
m()
function, indexed by its first argument.This is an example of a node that caches well:
If all those attributes,
class
,id
andhref
were not part of the first argument, only an emptya
node would be cached and the rest of the attributes would have to be assembled one by one, every time that the view is called.MSX should be able to distinguish attributes that are constant:
from those that are variable, that is, that get their value from an expression:
The first should result in:
The second in:
This would greatly speed up the refresh process.
The text was updated successfully, but these errors were encountered: