Including multiple JSX-files in panel
I'm trying to include multiple JSX-files with my panel and I followed this blog post by Davide Barranca:
http://www.davidebarranca.com/2014/01/html-panels-tips-2-including-multiple-jsx
The external scripts are all evaluated just fine, but when trying to call one of the functions in one of these scripts nothing happens:
main.js
csInterface.evalScript("externalFunc()");
external.jsx
/*jslint vars: true, plusplus: true, devel: true, nomen: true, regexp: true, indent: 4, maxerr: 50 */
/*global $, Folder*/
function externalFunc(){
alert("yay - loaded additional external JSX");
}
