73 lines
No EOL
2.8 KiB
HTML
73 lines
No EOL
2.8 KiB
HTML
<script type="text/javascript" src="#CHEMIN{jquery.jBreadCrumb.1.1.js}"></script>
|
|
<script type="text/javascript">// <![CDATA[
|
|
function paddToggle(classname,value) {
|
|
jQuery(classname).focus(function() {
|
|
if (value == jQuery(classname).val()) {
|
|
jQuery(this).val('');
|
|
}
|
|
});
|
|
jQuery(classname).blur(function() {
|
|
if ('' == jQuery(classname).val()) {
|
|
jQuery(this).val(value);
|
|
}
|
|
});
|
|
};
|
|
$(document).ready(function(){
|
|
// Déplacer le fil d'arianne
|
|
if(document.getElementById('hierarchie')){
|
|
$("#hierarchie a").wrap("<li></li>");
|
|
$("#hierarchie strong").wrap("<li></li>");
|
|
$("#breadCrumb ul").append($("#hierarchie li"));
|
|
$("#hierarchie").remove();
|
|
$(".breadCrumbHolder").show();
|
|
$("#breadCrumb").jBreadCrumb({previewWidth:40});
|
|
} else {
|
|
$(".breadCrumbHolder").remove();
|
|
}
|
|
// Déplacer le formulaire de recherche
|
|
if(document.getElementById('formulaire_recherche')){
|
|
$("#header").append($("#formulaire_recherche"));
|
|
$(".noisette_formulaire_recherche").remove();
|
|
}
|
|
// Recopier les notes
|
|
$("#content [rel='footnote']").each(function(index, element) {
|
|
var nb = $(this).attr('id').substring(2);
|
|
var note = $('#nb'+nb).parent('p');
|
|
$(this).after(note.clone().addClass('sidenote').addClass('content-unrelated'));
|
|
});
|
|
$(".sidenote a").removeAttr('id','');
|
|
// Gérer hauteur et largeur pour AnythingSlider.
|
|
$("#content .liste.anythingslider li.item").each(function(index, element) {
|
|
$(this).css('width',$("#content").width()-100);
|
|
$(this).css('height',$(this).outerHeight(true)+10);
|
|
});
|
|
$("#side .liste.anythingslider li.item").each(function(index, element) {
|
|
$(this).css('width',$("#side").width()-100);
|
|
$(this).css('height',$(this).outerHeight(true)+10);
|
|
});
|
|
// Pré-charger le formulaire de recherche
|
|
if ('' == $('input#recherche').val()) {
|
|
$('input#recherche').val('<:info_rechercher:>');
|
|
}
|
|
paddToggle('input#recherche', '<:info_rechercher:>');
|
|
// Forums (ajout d'un clear et déplacement des titres)
|
|
$('#content .comment-texte').append('<br style="clear: both;" />');
|
|
$('#content .comment-meta .sep').append('<br />');
|
|
$('#content .forum-message').each(function(index, element) {
|
|
if($(this).find('.forum-titre').length>0)
|
|
$(this).find('.comment-content').prepend($(this).find('.forum-titre').wrap('<div></div>'));
|
|
});
|
|
// Rajouter une classe .qui lorsque comment n'est pas actif
|
|
if($('#formulaire_forum fieldset.qui').length==0)
|
|
$('#formulaire_forum fieldset').last().addClass('qui');
|
|
});
|
|
//]]></script>
|
|
<!--[if IE]>
|
|
<script type="text/javascript" src="#CHEMIN{jquery.corner.js}"></script>
|
|
<script type="text/javascript">// <![CDATA[
|
|
$(document).ready(function(){
|
|
$('#main').corner("15px");
|
|
$('h3.spip').corner("left 5px");
|
|
});
|
|
//]]></script>
|
|
<![endif]--> |