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
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
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
dispatch { | |
// Some example dispatch domains | |
// domain "example.com" | |
domain "google.com" | |
} | |
global { | |
} | |
rule temp_rule is active{ |
NewerOlder