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
function (){ | |
$('views-field-title').slideUp(); | |
$('views-field-field-homepage-slider-text').slideUp(); | |
} |
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
$('view-homepage-slider').cycle({ | |
fx: 'fade', | |
speed: 'slow', | |
timeout: 0, | |
before: onBefore, | |
after: onAfter, | |
}); |
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
<?php if ($name): ?> | |
<h1 class="author" id="author"><?php print $name; ?></h1> | |
?php endif; ?> |
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
function location_taxonomize_bulk_taxonomize($form, $form_state) { | |
$source = _location_taxonomize_get_source(); | |
$batch_function = $source . '_bulk_taxonomize_op'; | |
$batch = array( | |
'operations' => array( | |
array($batch_function, array($form_state)), | |
), | |
'finished' => 'location_taxonomize_bulk_taxonomize_finished', | |
'title' => t('Taxonomizing Locations'), | |
'init_message' => t('Initializing...'), |