From: Alexey M. <ma...@ca...> - 2000-12-05 14:07:12
|
> versions. If you put equivant of #IFDEF (or whatever, it's been a long time > code is in one place, and browser specific versions are developed together, It is interesting idea. I thinks it could be done just with a "grep" (grep.exe) and sed :) ---src.js--- code.... #IE sghd #NN uuuuu ------------ cat src.js | grep -v "^#IE" | sed s/"^#NN"//g >out.js But! It would be hard to create the codes :-/ If implementation ideology of DynLayer in IE and NN would be different. (for example - use of <layer (or = new Layer())for NN as more stable , than </div>). This one better to keep in different files. Malx |