Hello,
I'm trying to use your library (the drag'n drop demo) in an application, and it works great in Firefox (doen't work in Chrome on a local file access, because of security problems, but nevermind), but it doesn't seem to work in Internet Explorer 8 and 9.
I've used the following libraries :
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/1.2.4/es5-shim.min.js"></script>
<script type="text/javascript" src="http://jbeard4.github.com/SCION/builds/latest/scion.js"></script>
and it gives me an error on the following lines :
var util = require('../core/util/util'),
basePlatform = require('../embedded/platform').platform;
//browser mostly just inherits path from basePlatform
exports.platform = util.merge(Object.create(basePlatform),{
Do you have any idea on how to make it work ?
Thank you.