Difference between revisions of "MediaWiki:Vector.js"
Difference between revisions of "MediaWiki:Vector.js"
| Line 1: | Line 1: | ||
| − | |||
$.ajax({ | $.ajax({ | ||
url: 'https://meta.wikimedia.org/w/index.php?title=User:Krinkle/Scripts/InsertWikiEditorButton.js&action=raw&ctype=text/javascript', | url: 'https://meta.wikimedia.org/w/index.php?title=User:Krinkle/Scripts/InsertWikiEditorButton.js&action=raw&ctype=text/javascript', | ||
| Line 10: | Line 9: | ||
icon: '//rpm3.rcabc.org/resources/assets/buttons.jpg', | icon: '//rpm3.rcabc.org/resources/assets/buttons.jpg', | ||
label: 'Button Group', | label: 'Button Group', | ||
| − | insertBefore: '<jstbutton group="Guarantee Standards">Guarantee Standards</jstbutton> | + | insertBefore: '<jstbutton group="Guarantee Standards">Guarantee Standards</jstbutton> <jstbutton group="rec">Recommendations</jstbutton> <jstbutton group="policies">Guiding Policies</jstbutton>' |
}); | }); | ||
| Line 19: | Line 18: | ||
insertBefore: '<jstdiv group="policies">', | insertBefore: '<jstdiv group="policies">', | ||
insertAfter: '</jstdiv>', | insertAfter: '</jstdiv>', | ||
| − | sampleText: 'Policies' | + | sampleText: 'Guiding Policies' |
}); | }); | ||
| Line 31: | Line 30: | ||
}); | }); | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
krInsertWikiEditorButton({ | krInsertWikiEditorButton({ | ||
id: 'mw-customeditbutton-tabgroup', | id: 'mw-customeditbutton-tabgroup', | ||
Revision as of 21:35, 30 June 2015
$.ajax({
url: 'https://meta.wikimedia.org/w/index.php?title=User:Krinkle/Scripts/InsertWikiEditorButton.js&action=raw&ctype=text/javascript',
dataType: 'script',
cache: true
}).done(function () {
krInsertWikiEditorButton({
id: 'mw-customeditbutton-buttons',
icon: '//rpm3.rcabc.org/resources/assets/buttons.jpg',
label: 'Button Group',
insertBefore: '<jstbutton group="Guarantee Standards">Guarantee Standards</jstbutton> <jstbutton group="rec">Recommendations</jstbutton> <jstbutton group="policies">Guiding Policies</jstbutton>'
});
krInsertWikiEditorButton({
id: "mw-customeditbutton-policies",
icon: "//rpm3.rcabc.org/resources/assets/policies.png",
label: 'Policies',
insertBefore: '<jstdiv group="policies">',
insertAfter: '</jstdiv>',
sampleText: 'Guiding Policies'
});
krInsertWikiEditorButton({
id: 'mw-customeditbutton-recommendations',
icon: '//rpm3.rcabc.org/resources/assets/recommendations.png',
label: 'Recommendations',
insertBefore: '<jstdiv group="rec">',
insertAfter: '</jstdiv>',
sampleText: 'Recommendations'
});
krInsertWikiEditorButton({
id: 'mw-customeditbutton-tabgroup',
icon: '//rpm3.rcabc.org/resources/assets/tabstart.png',
label: 'Create Tab Group',
insertBefore: '<tabs>',
insertAfter: '</tabs>'
});
krInsertWikiEditorButton({
id: 'mw-customeditbutton-tab',
icon: '//rpm3.rcabc.org/resources/assets/tab.png',
label: 'Create Tab',
insertBefore: '<tab name="CHANGE ME">',
insertAfter: '</tab>'
});
});
