mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 19:09:29 +00:00
25 lines
716 B
JavaScript
25 lines
716 B
JavaScript
( function( $, mw, undefined ) {
|
|
|
|
$(document).ready( setupSpecial );
|
|
|
|
function setupSpecial() {
|
|
|
|
var feedback = new mw.Feedback( {
|
|
'title': new mw.Title( 'Visual editor/Feedback' ),
|
|
'dialogTitleMessageKey': 'visualeditor-feedback-dialog-title'
|
|
} );
|
|
|
|
$feedbackLink = $( '<a></a>' )
|
|
.attr( { 'href': '#' } )
|
|
.text( mw.msg( 'visualeditor-feedback-prompt' ) )
|
|
.click( function() { feedback.launch(); } );
|
|
|
|
// Right before the line with the test "documents" we prepend a float-right
|
|
// div, which puts it on the same line as the documents at right.
|
|
$( '#es-docs' ).before(
|
|
$( '<div></div>' ).css( { 'float': 'right' } ).append( $feedbackLink )
|
|
);
|
|
}
|
|
|
|
} )( jQuery, window.mediaWiki );
|