Created
September 2, 2009 09:15
-
-
Save edvakf/179621 to your computer and use it in GitHub Desktop.
This file contains 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
// ==UserScript== | |
// @include http://favotter.matope.com/* | |
// ==/UserScript== | |
opera.defineMagicFunction('finishFav',function(){ | |
var self = this; | |
setTimeout(function(){ | |
$(self).attr('src',''); | |
$('.fav-throb').removeClass('fav-throb').addClass('fav'); | |
$(self).remove(); | |
},1000); | |
}); | |
opera.defineMagicFunction('finishUnFav',function(){ | |
var self = this; | |
setTimeout(function(){ | |
$(self).attr('src',''); | |
$('.fav-throb').removeClass('fav-throb').addClass('non-fav'); | |
$(self).remove(); | |
},1000); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment