مدیاویکی:Common.js: تفاوت بین نسخه‌ها

از دانشنامه‌ی اسلامی
پرش به ناوبری پرش به جستجو
(صفحه‌ای جدید حاوی ' if (mwCustomEditButtons) { mwCustomEditButtons[mwCustomEditButtons.length] = { "imageFile": "http://images.wikia.com/central/images/c/c...' ایجاد کرد)
 
سطر ۱: سطر ۱:
if (mwCustomEditButtons) {
+
jQuery(document).ready(function ($) {
  mwCustomEditButtons[mwCustomEditButtons.length] = {
+
        $('#wpTextbox1').wikiEditor('addToToolbar', {
    "imageFile": "http://images.wikia.com/central/images/c/c8/Button_redirect.png",
+
                section: 'advanced',
    "speedTip": "Redirect",
+
                group: 'format',
    "tagOpen": "#REDIRECT [[",
+
                tools: {
    "tagClose": "]]",
+
                        buttonId: {
    "sampleText": "Insert text"};
+
                                label: 'Comment visible only for editors',
+
                                type: 'button',
  mwCustomEditButtons[mwCustomEditButtons.length] = {
+
                                icon: '//upload.wikimedia.org/wikipedia/commons/f/f9/Toolbaricon_regular_S_stroke.png',
    "imageFile": "http://images.wikia.com/central/images/c/c9/Button_strike.png",
+
                                action: {
    "speedTip": "Strike",
+
                                        type: 'encapsulate',
    "tagOpen": "<s>",
+
                                        options: {
    "tagClose": "</s>",
+
                                                pre: "<!-- ",
    "sampleText": "Strike-through text"};
+
                                                peri: "Insert comment here",
+
                                                post: " -->"
  mwCustomEditButtons[mwCustomEditButtons.length] = {
+
                                        }
    "imageFile": "http://images.wikia.com/central/images/1/13/Button_enter.png",
+
                                }
    "speedTip": "Line break",
+
                        }
    "tagOpen": "<br />",
+
                }
    "tagClose": "",
+
        });
    "sampleText": ""};
+
});
 
 
  mwCustomEditButtons[mwCustomEditButtons.length] = {
 
    "imageFile": "http://images.wikia.com/central/images/7/74/Button_comment.png",
 
    "speedTip": "Comment visible only for editors",
 
    "tagOpen": "<!-- ",
 
    "tagClose": " -->",
 
    "sampleText": "Insert comment here"}
 
  }
 

نسخهٔ ‏۲۴ ژوئیهٔ ۲۰۱۲، ساعت ۰۶:۱۳

jQuery(document).ready(function ($) {
        $('#wpTextbox1').wikiEditor('addToToolbar', {
                section: 'advanced',
                group: 'format',
                tools: {
                        buttonId: {
                                label: 'Comment visible only for editors',
                                type: 'button',
                                icon: '//upload.wikimedia.org/wikipedia/commons/f/f9/Toolbaricon_regular_S_stroke.png',
                                action: {
                                        type: 'encapsulate',
                                        options: {
                                                pre: "<!-- ",
                                                peri: "Insert comment here",
                                                post: " -->"
                                        }
                                }
                        }
                }
        });
});