Skip to content

Commit fe06d51

Browse files
committed
Created shared module math.js for all functions (resolves circular references)
1 parent cf2b64b commit fe06d51

115 files changed

Lines changed: 3443 additions & 2759 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Jakefile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ task('dist', {async: true}, function () {
132132
throw err;
133133
}
134134

135-
// add header and footer
136-
var lib = util.read('./src/header.js') + code;
135+
// add header and shim
136+
var lib = util.read('./src/header.js') + code + util.read('./src/shim.js');
137137

138138
// write bundled file
139139
util.write(dist, lib);

0 commit comments

Comments
 (0)