Welcome to Assassin's Creed Wiki! Log in and join the community.
User:Jasca Ducato/Common.js: Difference between revisions
Jump to navigation
Jump to search
imported>Jasca Ducato m Created page with "<pre> →<nowiki>: →########################################################################: /* ### JavaScript here is loaded for all users and all skins. ### *..." |
imported>Jasca Ducato mNo edit summary |
||
| Line 7: | Line 7: | ||
/* ######################################################################## */ | /* ######################################################################## */ | ||
/* ### TITLE ICONS (Template: | /* ### TITLE ICONS (Template:Era) ### */ | ||
/* ### ---------------------------------------------------------------- ### */ | /* ### ---------------------------------------------------------------- ### */ | ||
/* ### Description: Add icons to article title ### */ | /* ### Description: Add icons to article title ### */ | ||
/* ### Credit: User:Porter21 | /* ### Credit: User:Porter21 (@ Fallout Wiki) ### */ | ||
/* ######################################################################## */ | /* ######################################################################## */ | ||
Latest revision as of 19:39, 29 April 2012
<pre>
/* <nowiki> */
/* ######################################################################## */
/* ### JavaScript here is loaded for all users and all skins. ### */
/* ######################################################################## */
/* ######################################################################## */
/* ### TITLE ICONS (Template:Era) ### */
/* ### ---------------------------------------------------------------- ### */
/* ### Description: Add icons to article title ### */
/* ### Credit: User:Porter21 (@ Fallout Wiki) ### */
/* ######################################################################## */
function addTitleIcons () {
var iconBar = $('#va-titleicons');
var previewBar = $('#va-titleicons-preview');
if (skin != 'monobook' && skin != 'oasis' && skin != 'wikia') {
return;
}
if (iconBar.length > 0 && $('a', previewBar).length > 0) {
if (skin == 'oasis' || skin == 'wikia') {
var articleDiv = $('#WikiaArticle');
if (articleDiv.length > 0) {
iconBar.css('display', 'block').prependTo(articleDiv);
}
} else if (skin == 'monobook') {
var firstHeading = $('#firstHeading').css('position', 'relative');
if (firstHeading.length > 0) {
iconBar.css('display', 'block').appendTo(firstHeading.css('padding-right', previewBar.width() + 25));
}
}
$('#va-titleicons-more').append('<img width="0" height="0" class="va-titleicons-chevron" src="http://images.wikia.com/common/skins/common/blank.gif">');
iconBar.hover(
function () {
$(this).addClass('va-titleicons-hover');
}, function () {
$(this).removeClass('va-titleicons-hover');
});
}
}
/* </nowiki> */
</pre>