הבדלים בין גרסאות בדף "מדיה ויקי:Common.js"
מתוך ויקירפואה
ערן רוזנטל (שיחה | תרומות) |
ערן רוזנטל (שיחה | תרומות) (צפייה במסך מלא) |
||
שורה 136: | שורה 136: | ||
width: '1050', | width: '1050', | ||
height: '700', | height: '700', | ||
− | title: $(this).prop('title').substr(2) | + | title: $(this).prop('title').substr(2), |
+ | buttons: { | ||
+ | "צפייה במסך מלא": function() { | ||
+ | location.href = dest; | ||
+ | }} | ||
}); | }); | ||
e.preventDefault(); | e.preventDefault(); |
גרסה מ־09:13, 31 במאי 2014
/* כל סקריפט JavaScript שנכתב כאן ירוץ עבור כל המשתמשים בכל טעינת עמוד */ importScript("MediaWiki:Navigationbar.js"); //adds print link var printButton = $('"<li id="printTab"><span><a href="#" title="להדפסת הדף">הדפסה</a></span></li>').click(function(){ window.print(); }); $('#p-views ul').prepend ( printButton ) ; /* Google search */ $('#mw-searchButton').after($('<input type="button" class="searchButton" title="חיפוש טקסט זה בגוגל" value="חיפוש גוגל">').click(function(){ window.location.href = 'https://www.google.com/search?q='+encodeURI($('#searchInput').val())+'&domains=http://wikirefua.org.il&sitesearch=http://wikirefua.org.il&ie=utf-8&oe=utf-8'; })); /* breakline in categories */ $(function(){ var catsToBreak = $('.catBreak').map(function(i,e){ return $(e).text(); }); $('.mw-normal-catlinks a').filter( function(i, e) { return $.inArray($(e).text(),catsToBreak)>-1 } ) .each( function(){ $(this).parent().next().css('border-right','none').before('<br>') }); }); /* additional toolbar buttons */ if ( mw.user.options.get('usebetatoolbar')) { mw.loader.using(['jquery.wikiEditor','jquery.wikiEditor.toolbar','ext.wikiEditor','ext.wikiEditor.toolbar'],function(){ $(function() { // קבוצה חדשה בתפריט מתקדם: $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'section': 'advanced', 'groups': { 'more': { 'label': "" } } } ); // טקסט ממורכז $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'section': 'advanced', 'group': 'more', 'tools': { 'center': { label: 'טקסט ממורכז', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/thumb/c/ce/Gnome-format-justify-center.svg/22px-Gnome-format-justify-center.svg.png', action: { type: 'encapsulate', options: { pre: '<center>', peri: "טקסט ממורכז", post: "</center>" } } } } } ); // טקסט מיושר לשמאל $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'section': 'advanced', 'group': 'more', 'tools': { 'center': { label: 'טקסט מיושר לשמאל', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/thumb/c/ce/Gnome-format-justify-left.svg/22px-Gnome-format-justify-left.svg.png', action: { type: 'encapsulate', options: { pre: '<div class="mw-content-ltr">', peri: "טקסט מיושר לשמאל", post: "</div>" } } } } } ); // הערה מוסתרת $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'section': 'advanced', 'group': 'more', 'tools': { 'hiddennote': { label: 'הערה מוסתרת', type: 'button', icon: '//upload.wikimedia.org/wikipedia/commons/thumb/b/b5/Gnome-document-new.svg/22px-Gnome-document-new.svg.png', action: { type: 'encapsulate', options: { pre: '<!-- ', peri: "הערה מוסתרת", post: " -->" } } } } } ); // צבע גופן $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'section': 'main', 'group': 'format', 'tools': { 'colouredtext': { label: 'טקסט צבוע', type: 'button', icon: '//upload.wikimedia.org/wikipedia/he/2/26/NewColorBtn.png', action: { type: 'encapsulate', options: { pre: '<span style="color: ColorName;">', peri: "טקסט צבוע", post: "</span>" } } } } } ); }); }); } //Loading dialog for wikitrufut links $(function(){ if($('.wikitrufot-dialog-links a').length > 0) { mw.loader.using('jquery.ui.dialog', function(){ $('.wikitrufot-dialog-links a').click(function(e){ var dest = $(this).attr('href'); $('<div style="text-align:center;" />').append($('<iframe style="width:1000px;height:640px;" />').attr("src", dest)).dialog({ width: '1050', height: '700', title: $(this).prop('title').substr(2), buttons: { "צפייה במסך מלא": function() { location.href = dest; }} }); e.preventDefault(); }) }); } });