In today's world,
User:Technical 13/Scripts/editTemplateNoDoc.js has become a topic of interest and debate in a wide range of areas. Whether in the political, social, scientific or cultural sphere,
User:Technical 13/Scripts/editTemplateNoDoc.js has captured the attention of society and generated passionate discussions about its importance and the implications it has. As we continue to move forward into the 21st century,
User:Technical 13/Scripts/editTemplateNoDoc.js has become a relevant topic that requires in-depth analysis and reflection about its long-term implications and consequences. In this article, we will explore different aspects related to
User:Technical 13/Scripts/editTemplateNoDoc.js and examine its impact on today's society.
if( mw.config.get('wgNamespaceNumber') === 10 && mw.config.get('wgAction') === 'edit' && $( '.template-documentation' ).length !== -1){
$( '.template-documentation' ).css( 'display', 'none');
var tnd = mw.util.addPortletLink(
'p-tb',
'#',
'View doc',
'pt-temp-doc',
'View template documentation',
null,
null
);
$( tnd ).click( function ( e ) {
e.preventDefault();
/* Toggle documentation display */
$( '.template-documentation' ).css( 'display', function (i, val) {
return val === 'none' ? '' : 'none';
});
/* Toggle the link */
$( 'li#pt-temp-doc a' ).html( function (i, val) {
return val === 'View doc' ? 'Hide doc' : 'View doc';
});
/* Toggle the description */
$( 'li#pt-temp-doc a' ).attr( 'title', function (i, val) {
return val === 'View template documentation' ? 'Hide template documentation' : 'View template documentation';
});
});
} else {
/* Do nothing */
}