Difference between revisions of "MediaWiki:Vector.js"
Difference between revisions of "MediaWiki:Vector.js"
Line 5: | Line 5: | ||
cache: true | cache: true | ||
}).done(function () { | }).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="policies">Policies</jstbutton> <jstbutton group="rec">Recommendations</jstbutton> <jstbutton group="ref">Reference</jstbutton>' | ||
+ | }); | ||
+ | |||
krInsertWikiEditorButton({ | krInsertWikiEditorButton({ | ||
id: "mw-customeditbutton-policies", | id: "mw-customeditbutton-policies", | ||
Line 33: | Line 41: | ||
krInsertWikiEditorButton({ | krInsertWikiEditorButton({ | ||
− | id: 'mw-customeditbutton- | + | id: 'mw-customeditbutton-tabgroup', |
− | icon: '//rpm3.rcabc.org/resources/assets/ | + | icon: '//rpm3.rcabc.org/resources/assets/tabstart.png', |
− | label: ' | + | label: 'Create Tab Group', |
− | insertBefore: '< | + | 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>' | ||
}); | }); | ||
}); | }); |
Revision as of 07:43, 24 June 2015
/* Any JavaScript here will be loaded for users using the Vector skin */ $.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="policies">Policies</jstbutton> <jstbutton group="rec">Recommendations</jstbutton> <jstbutton group="ref">Reference</jstbutton>' }); krInsertWikiEditorButton({ id: "mw-customeditbutton-policies", icon: "//rpm3.rcabc.org/resources/assets/policies.png", label: 'Policies', insertBefore: '<jstdiv group="policies">', insertAfter: '</jstdiv>', sampleText: '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-reference', icon: '//rpm3.rcabc.org/resources/assets/reference.png', label: 'Reference', insertBefore: '<jstdiv group="ref">', insertAfter: '</jstdiv>', sampleText: 'Reference' }); 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>' }); });