הבדלים בין גרסאות בדף "מדיה ויקי:Common.js"
מתוך ויקירפואה
ערן רוזנטל (שיחה | תרומות) (כפתורי יישור מhe:מדיה ויקי:Edittoolbar.js) |
ערן רוזנטל (שיחה | תרומות) (הערה מוסתרת וצבע גופן) |
||
שורה 79: | שורה 79: | ||
} | } | ||
} | } | ||
+ | } | ||
+ | } ); | ||
+ | |||
+ | // הערה מוסתרת | ||
+ | $( '#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>" | ||
+ | } | ||
+ | } | ||
+ | } | ||
} | } | ||
} ); | } ); |
גרסה מ־20:52, 26 בינואר 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>" } } } } } ); }); }); }