curl-amd
Version:
curl.js is small, fast, extensible module loader that handles AMD, CommonJS Modules/1.1, CSS, HTML/text, and legacy scripts.
51 lines (41 loc) • 854 B
HTML
<html>
<head>
<title>plugin errback test</title>
<script>
curl = {
baseUrl: '',
paths: {
curl: '../src/curl'
}
};
</script>
<script src="../src/curl.js" type="text/javascript"></script>
<script type="text/javascript">
define('curl/plugin/plugin-that-fails', function(){
return {
load: function(id, require, loaded, config){
// loads two instead of one
loaded.error(new Error('foo'));
}
};
});
var testId = 'should call standard errback';
curl(['plugin-that-fails!anything'],
function () {
write('FAILED: ' + testId);
},
function (ex) {
write('SUCCESS: ' + testId + ' - ' + ex.message);
}
);
function write (msg) {
curl('domReady!', function () {
document.body.appendChild(document.createElement('div')).innerHTML = msg;
});
}
</script>
</head>
<body>
</body>
</html>