Okay, what I've found so far after a google research is some code from the page doc.ludei.com/CocoonJS_App_ForCocoonJS/symbols/src/cocoonjsextensions_CocoonJS_App_ForCocoonJS.js.html that contains the following:
6 /**
7 * This namespace represents all the basic functionalities available in the CocoonJS extension API.
8 * namespace
9 */
10 CocoonJS.App = CocoonJS.App ? CocoonJS.App : {};
11
12 if (!CocoonJS.App.nativeExtensionObjectAvailable)
13 {
14 (function createWebView() {
15 [...]
22 CocoonJS.App.EmulatedWebView.style.backgroundColor = 'transparent';
23 [...]
33 })();
34 }
However, how and where do I have to include that into my c2runtime.js? Any ideas?