Time consuming callbacks in customizer
Question
I am having a custom state ex. ‘visibility-state’ which having values as true | false.
I am binding this state to all the settings and settings are in 1000+ numbers. SO when the state changes it is recalling all the states 1000+ times which seems to be a heavy process.
var setActiveState = function () {
// This is calling 1000+ times.
element.active.set( logic_to_toggle() );
};
// This is in the loop of all the controls.
api.state('visibility-state').bind( setActiveState );
Is there any optimized way to remove all bound functions and set only for the expanded sections so controls under the expanded section would toggle only?
0
2 months
0 Answers
16 views
0
Leave an answer
You must login or register to add a new answer .