annotate Platforms/WebAssembly/defaultLibrary.js @ 225:930f98252ab9 am

fix
author am@osimis.io
date Thu, 14 Jun 2018 11:22:03 +0200
parents 84844649a8fd
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