Difference between revisions of "MediaWiki:Vector.js"
Difference between revisions of "MediaWiki:Vector.js"
(Created page with "→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/InsertWikiEditorButt...") |
|||
Line 5: | Line 5: | ||
cache: true | cache: true | ||
}).done(function () { | }).done(function () { | ||
− | |||
− | |||
krInsertWikiEditorButton({ | krInsertWikiEditorButton({ | ||
− | id: "mw-customeditbutton- | + | id: "mw-customeditbutton-policies", |
− | icon: "// | + | icon: "resources/assets/policies.png", |
− | label: ' | + | label: 'Policies', |
− | insertBefore: ' | + | insertBefore: '<jstdiv group="policies">', |
− | insertAfter: ' | + | insertAfter: '</jstdiv>', |
− | sampleText: ' | + | sampleText: 'Policies' |
}); | }); | ||
− | |||
krInsertWikiEditorButton({ | krInsertWikiEditorButton({ | ||
− | id: 'mw-customeditbutton- | + | id: 'mw-customeditbutton-recommendations', |
− | icon: '// | + | icon: 'resources/assets/recommendations.png', |
− | label: ' | + | label: 'Recommendations', |
− | insertBefore: ' | + | insertBefore: '<jstdiv group="rec">', |
− | insertAfter: ' | + | insertAfter: '</jstdiv>', |
− | sampleText: ' | + | sampleText: 'Recommendations' |
+ | }); | ||
+ | |||
+ | krInsertWikiEditorButton({ | ||
+ | id: 'mw-customeditbutton-reference', | ||
+ | icon: 'resources/assets/reference.png', | ||
+ | label: 'Reference', | ||
+ | insertBefore: '<jstdiv group="ref">', | ||
+ | insertAfter: '</jstdiv>', | ||
+ | sampleText: 'Reference' | ||
}); | }); | ||
− | |||
}); | }); |
Revision as of 07:28, 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-policies", icon: "resources/assets/policies.png", label: 'Policies', insertBefore: '<jstdiv group="policies">', insertAfter: '</jstdiv>', sampleText: 'Policies' }); krInsertWikiEditorButton({ id: 'mw-customeditbutton-recommendations', icon: 'resources/assets/recommendations.png', label: 'Recommendations', insertBefore: '<jstdiv group="rec">', insertAfter: '</jstdiv>', sampleText: 'Recommendations' }); krInsertWikiEditorButton({ id: 'mw-customeditbutton-reference', icon: 'resources/assets/reference.png', label: 'Reference', insertBefore: '<jstdiv group="ref">', insertAfter: '</jstdiv>', sampleText: 'Reference' }); });