Closed GoogleCodeExporter closed 8 years ago
IO.includeDir (dfined in app/run.js) will include ALL files in the lib
directory, regardless of whether they were
create by you or your text editor. "Walker.js~" is being loaded after
"Walker.js" so is overwriting the real file.
Make the following change to app/run.js
338c338
< load(lib[i]);
---
> if (/\.js$/i.test(lib[i])) load(lib[i]);
Or modify JEdit's preferences to stop creating scratch files in same directory
as the source file.
Or use BBEdit instead (my personal favorite).
Committed revision 754.
Original comment by micmath
on 31 Dec 2008 at 2:45
Original issue reported on code.google.com by
katz...@gmail.com
on 31 Dec 2008 at 10:39