Custom Interaction on js

There was a problem in using non-standard interactive actions. When scroll page I need to change position states from fixed to absolute.

After reading this article: How to trigger Webflow interactions using JavaScript
learned that I can create custom value.

From a file “webflow.js” got such a value:

After copying the necessary code from file “webflow.js” and editing it received:

Webflow.require(‘ix’).init([
{“slug”:“stick-menu”,“name”:“stick-menu”,“value”:{“style”:{},“triggers”:[{“type”:“scroll”,“selector”:“.main-menu”,“offsetTop”:“0%”,“offsetBot”:“100%”,“stepsA”:[{“position”:“absolute”}],“stepsB”:[{“position”:“fixed”}]}]}}
]);

Where:
“stick-menu” is name of interraction in webflow project;
“.main-menu” is the element to which the style is applied.

After paste

before BODY code, interaction began to work, but stopped other interactions.

Tell me please, how to correctly insert this code?

link on this page: http://bro-test.webflow.io/

P.S. Sorry for my English)

Found an easy solution:

Topic can be closed)