UnityWebGLOpenLink icon indicating copy to clipboard operation
UnityWebGLOpenLink copied to clipboard

erro

Open amarotxt opened this issue 7 years ago • 0 comments

var OpenWindowPlugin = { openWindow: function(link) { var url = Pointer_stringify(link); document.onmouseup = function() { window.open(url); document.onmouseup = null; } } };

Right version : mergeInto(LibraryManager.library, OpenWindowPlugin); var OpenWindowPlugin = { openWindow: function(link) { var url = Pointer_stringify(link); document.onmouseup = function() { window.open(url); document.onmouseup = null; }; } };

mergeInto(LibraryManager.library, OpenWindowPlugin);

amarotxt avatar Feb 22 '18 17:02 amarotxt