Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- return view.extend({
- load: function() {
- return new Promise(function(resolveFn, rejectFn) {
- document.querySelector('head').appendChild(E('script', {
- src: 'blah.js',
- load: resolveFn,
- error: rejectFn
- }));
- });
- },
- render: function() {
- ...
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement