Created
February 15, 2012 21:50
-
-
Save mkorostoff/1839229 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('.views-field-field-blog-category a[href="/news/category/Fan-Club-News"]') | |
.addClass('fan-club-row'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment