From: Thierry Parmentelat Date: Mon, 25 Mar 2013 08:07:58 +0000 (+0100) Subject: keep it simple X-Git-Tag: myslice-django-0.1-3~43 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=125cb35942f634e42bf1afcbd5da04a5bd67eaca;p=myslice.git keep it simple --- diff --git a/unfold/js/plugin.js b/unfold/js/plugin.js index b03b7375..5aa90fac 100644 --- a/unfold/js/plugin.js +++ b/unfold/js/plugin.js @@ -22,14 +22,14 @@ var plugin = { init_all_plugins: function() { $('.plugin-hide').each(function() { $(this).click(function () { - var plugin='#'+$(this).attr('id').replace('hide-',''); - var show='#'+$(this).attr('id').replace('hide-','show-'); + var plugin='#'+this.id.replace('hide-',''); + var show='#'+this.id.replace('hide-','show-'); $(plugin).slideUp(); $(show).show(); $(this).hide();}); }); $('.plugin-show').each(function() { $(this).click(function () { - var plugin='#'+$(this).attr('id').replace('show-',''); - var hide='#'+$(this).attr('id').replace('show-','hide-'); + var plugin='#'+this.id.replace('show-',''); + var hide='#'+this.id.replace('show-','hide-'); $(plugin).slideDown(); $(hide).show(); $(this).hide();}); }); $('.plugin-tooltip').each(function(){ $(this).tooltip({'selector':'','placement':'right'}); });