annotate Platforms/WebAssembly/defaultLibrary.js @ 222:84844649a8fd am

continued: reusable applications
author am@osimis.io
date Tue, 12 Jun 2018 17:21:15 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
222
84844649a8fd continued: reusable applications
am@osimis.io
parents:
diff changeset
1 // this file contains the JS method you want to expose to C++ code
84844649a8fd continued: reusable applications
am@osimis.io
parents:
diff changeset
2
84844649a8fd continued: reusable applications
am@osimis.io
parents:
diff changeset
3 mergeInto(LibraryManager.library, {
84844649a8fd continued: reusable applications
am@osimis.io
parents:
diff changeset
4 ScheduleRedraw: function() {
84844649a8fd continued: reusable applications
am@osimis.io
parents:
diff changeset
5 ScheduleRedraw();
84844649a8fd continued: reusable applications
am@osimis.io
parents:
diff changeset
6 }
84844649a8fd continued: reusable applications
am@osimis.io
parents:
diff changeset
7 });
84844649a8fd continued: reusable applications
am@osimis.io
parents:
diff changeset
8