add compiled lib/browser.js

This commit is contained in:
Cotton Hou
2015-03-09 15:59:10 +08:00
parent cc1b056b03
commit 008bacf5d5

View File

@@ -104,12 +104,13 @@
}
};
fn = function(script, i) {
var options;
var options, source;
options = {
literate: script.type === coffeetypes[1]
};
if (script.src) {
return CoffeeScript.load(script.src, function(param) {
source = script.src || script.getAttribute('data-src');
if (source) {
return CoffeeScript.load(source, function(param) {
coffees[i] = param;
return execute();
}, options, true);