marko-js-archive / marko-widgets

[LEGACY] Module to support binding of behavior to rendered UI components rendered on the server or client
http://v3.markojs.com/docs/marko-widgets/
MIT License
142 stars 40 forks source link

deprecate calling render synchronously. use renderSync instead. #169

Closed mlrawlings closed 7 years ago

mlrawlings commented 7 years ago

Old:

widget.render({}).appendTo();

New:

widget.renderSync({}).appendTo();