Created
October 31, 2012 20:14
-
-
Save spdustin/3989541 to your computer and use it in GitHub Desktop.
WIP - helper classes for web parts
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
$('.ms-WPHeaderTd').each( | |
function() { | |
var wpClass = "wptitle-" + | |
$(this).attr('title').split('-')[0].replace(/[\W]/g,''); | |
$(this).closest('.s4-wpcell').addClass(wpClass); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment