Created
February 22, 2012 19:12
-
-
Save mkorostoff/1886708 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
//If the overall string is shorter than the trim length, we just execute the "show more" function, and hide the more/less controls | |
var click_hider = jQuery('.node-type-video .views-field-body-1 .field-content').html().length; | |
if (click_hider<=65) { | |
jQuery('.node-type-video .view-id-video.view-display-id-block_1 .views-field.views-field-body').show(); | |
jQuery('.node-type-video .view-id-video.view-display-id-block_1 .views-field.views-field-body-1').hide(); | |
jQuery('.node-type-video .more-button').hide(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment