Observe changes in TinyMCE from Dart

Issue According to TinyMCE API, the following JavaScript code observe changes in TinyMCE editor: tinyMCE.init({ … setup : function(ed) { ed.onChange.add(function(ed, l) { console.debug(‘Editor contents was modified. Contents: ‘ + l.content); }); } }); However, I’m unable to run this

Continue reading

NoSuchMethodError with dart.js

Issue I’m trying to use paper.js with Dart through js.dart. A lot seems to work, but I also need the method importSVG from paper.js. When I try to access it with js.context.paper.project.importSVG(query(“#svg”)); I get NoSuchMethodError. It’s somehow because the method

Continue reading