The compiled clojurescript is still not correctly deployed in the war; however, it is now compiled correctly and does work, and can be moved into place manually after deployment.
15 lines
356 B
JavaScript
15 lines
356 B
JavaScript
/* I'm not certain that this file is still needed at all; however, it doesn't seem to be doing any harm. */
|
|
/* Things which should not get renamed when compiling ClojureScript */
|
|
|
|
/* this block relates to the use of Leaflet */
|
|
var L = {
|
|
"map": {
|
|
"setView": function(){},
|
|
"eg": function(){}
|
|
},
|
|
"tileLayer": {
|
|
"addTo": function(){}
|
|
}
|
|
};
|
|
|