I have function, which is setting value for hitCounter
.
Could you tell me, how to pass it down to another function, so it still works?
this.view.hitCounter.value(someValue); // This function works here.
function DoSomething() {
this.view.hitCounter.value(someValue); // I want it to work here.
};
I don't have full code and don't know the scope. It is script inside visualisation creation tool.