This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dispatch { | |
| // Some example dispatch domains | |
| // domain "example.com" | |
| domain "google.com" | |
| } | |
| global { | |
| } | |
| rule temp_rule is active{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function runSetup(){ | |
| //Find the items that you are looking for, that don't have your setup class. | |
| $K("#rso > li:not(.tmsetup)").each(function(){ | |
| //CODE TO DO SOMETHING WITH YOUR ITEM | |
| //MAKE SURE TO RUN THIS NEXT LINE... so that they don't appear in your next search. | |
| $K(this).addClass('tmsetup'); | |
| }); | |
| } | |
| setInterval(function(){ | |
| runSetup(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ctrlpressed = false; | |
| altpressed = false; | |
| tpressed = false; | |
| tempapp = KOBJ.get_application("MY_APP"); | |
| function KeyCheck_Global(e, isPressed){ | |
| var gotkey = null; | |
| switch(e.keyCode){ | |
| case 17: //CTRL | |
| ctrlpressed=isPressed; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var foo = 0; | |
| if(true){ | |
| var bar = 1; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var foo = undefined; | |
| var bar = undefined; | |
| foo = 0; | |
| if(true){ | |
| bar = 1; | |
| } | |
| console.log( foo + bar ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var a = 1; | |
| function run(){ | |
| if(true){ | |
| var a = 2; | |
| } | |
| } | |
| run(); | |
| console.log(a); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var a = 1; | |
| function run(){ | |
| var a = undefined; | |
| if(true){ | |
| a = 2; | |
| } | |
| } | |
| run(); | |
| console.log(a); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function run(){ | |
| console.log(“running”); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| run(); | |
| function run(){ | |
| console.log(“running”); | |
| } | |
| run(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function run(){ | |
| console.log(“running”); | |
| } | |
| run(); | |
| run(); |
OlderNewer