Created
February 29, 2012 17:09
-
-
Save mkorostoff/1942515 to your computer and use it in GitHub Desktop.
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
//Search for views-rows with the fan club taxonomy term, and add a custom class to those that match. | |
Drupal.behaviors.stay_classy = { | |
attach: function() { | |
jQuery('li.views-row') | |
.has('.role-indicator-21') | |
.addClass('fan-club-row'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment