Underscore does not seem to be loading even though i have it in my deps
var deps = [
"splunkjs/ready!",
"splunkjs/mvc/searchmanager",
"splunkjs/mvc/simplexml/element/table",
"splunkjs/mvc/tableview",
"underscore"
];
require(deps, function (mvc) {
.. my code
});
It is possible that i18n is taking over for _. functions. I am not including i18n.. how do i change the order at which they load for my dashboard?
... View more