Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 10x 1x 1x 1x 1x 1x 5x 5x 5x 5x 5x 1x 1x 1x 1x 1x 1x 1x 3x 1x 1x 12x 12x 2x 2x 2x 10x 4x 4x 4x 1x | /* global $ */ /** * @class EditorOverlayBase * @private */ const mobile = require( 'mobile.startup' ), Overlay = mobile.Overlay, // Use MediaWiki ResourceLoader require(), not Webpack require() contLangMessages = ( require( './contLangMessages.json' ) ), util = mobile.util, parseBlockInfo = require( './parseBlockInfo.js' ), headers = mobile.headers, Button = mobile.Button, IconButton = mobile.IconButton, blockMessageDrawer = require( './blockMessageDrawer.js' ), MessageBox = mobile.MessageBox, mwUser = mw.user; /** * 'Edit' button * * @param {OO.ui.ToolGroup} toolGroup * @param {Object} config * @private */ function EditVeTool( toolGroup, config ) { config = config || {}; config.classes = [ 'visual-editor' ]; EditVeTool.super.call( this, toolGroup, config ); } OO.inheritClass( EditVeTool, OO.ui.Tool ); EditVeTool.static.name = 'editVe'; EditVeTool.static.icon = 'edit'; EditVeTool.static.group = 'editorSwitcher'; EditVeTool.static.title = mw.msg( 'mobile-frontend-editor-switch-visual-editor' ); /** * click handler * * @memberof EditVeTool * @instance */ EditVeTool.prototype.onSelect = function () { // will be overridden later }; /** * Toolbar update state handler. * * @memberof EditVeTool * @instance */ EditVeTool.prototype.onUpdateState = function () { // do nothing }; /** * Base class for SourceEditorOverlay and VisualEditorOverlay * * @class EditorOverlayBase * @private * @extends Overlay * @uses IconButton * @uses user */ class EditorOverlayBase extends Overlay { /** * @param {Object} params Configuration options * @param {boolean} params.editSwitcher whether possible to switch mode in header * @param {boolean} params.hasToolbar whether the editor has a toolbar */ constructor( params ) { const options = util.extend( true, { onBeforeExit: ( exit, cancel ) => { this.onBeforeExit( exit, cancel ); }, className: 'overlay editor-overlay', isBorderBox: false }, params, { events: util.extend( { 'click .back': 'onClickBack', 'click .continue': 'onClickContinue', 'click .submit': 'onClickSubmit', 'click .anonymous': 'onClickAnonymous' }, params.events ) } ); Iif ( options.isNewPage ) { options.placeholder = mw.msg( 'mobile-frontend-editor-placeholder-new-page', mwUser ); } // change the message to request a summary when not in article namespace Eif ( mw.config.get( 'wgNamespaceNumber' ) !== 0 ) { options.summaryRequestMsg = mw.msg( 'mobile-frontend-editor-summary' ); } super( options ); } /** * @inheritDoc */ initialize( options ) { this.isNewPage = options.isNewPage; this.sectionId = options.sectionId; this.overlayManager = options.overlayManager; super.initialize( options ); } /** * @mixes Overlay#defaults * @property {Object} defaults Default options hash. * @property {OverlayManager} defaults.overlayManager instance * @property {mw.Api} defaults.api to interact with * @property {boolean} defaults.hasToolbar Whether the editor has a toolbar or not. When * disabled a header will be show instead. * @property {string} defaults.continueMsg Caption for the next button on edit form * which takes you to the screen that shows a preview and license information. * @property {string} defaults.closeMsg Caption for a button that takes you back to editing * from edit preview screen. * @property {string} defaults.summaryRequestMsg Header above edit summary input field * asking the user to summarize the changes they made to the page. * @property {string} defaults.summaryMsg A placeholder with examples for the summary input * field asking user what they changed. * @property {string} defaults.placeholder Placeholder text for empty sections. * @property {string} defaults.captchaMsg Placeholder for captcha input field. * @property {string} defaults.captchaTryAgainMsg A message shown when user enters * wrong CAPTCHA and a new one is displayed. * @property {string} defaults.switchMsg Label for button that allows the user * to switch between two different editing interfaces. * @property {string} defaults.licenseMsg Text and link of the license, * under which this contribution will be released to inform the user. */ get defaults() { return util.extend( {}, super.defaults, { hasToolbar: false, continueMsg: mw.msg( 'mobile-frontend-editor-continue' ), closeMsg: mw.msg( 'mobile-frontend-editor-keep-editing' ), summaryRequestMsg: mw.msg( 'mobile-frontend-editor-summary-request' ), summaryMsg: mw.msg( 'mobile-frontend-editor-summary-placeholder' ), placeholder: mw.msg( 'mobile-frontend-editor-placeholder' ), captchaMsg: mw.msg( 'mobile-frontend-account-create-captcha-placeholder' ), captchaTryAgainMsg: mw.msg( 'mobile-frontend-editor-captcha-try-again' ), switchMsg: mw.msg( 'mobile-frontend-editor-switch-editor' ), confirmMsg: mw.msg( 'mobile-frontend-editor-cancel-confirm' ), licenseMsg: undefined } ); } /** * @inheritdoc */ get template() { return util.template( ` <div class="overlay-header-container header-container position-fixed"></div> <div class="overlay-content"> <div class="panels"> <div class="save-panel panel hideable hidden"> <div id="error-notice-container"></div> <h2 class="summary-request">{{{summaryRequestMsg}}}</h2> <div class="summary-input"></div> {{#licenseMsg}}<div class="license">{{{licenseMsg}}}</div>{{/licenseMsg}} </div> <div class="captcha-panel panel hideable hidden"> <div class="captcha-box"> <img id="image" src=""> <div id="question"></div> <div class="cdx-text-input"> <input class="captcha-word cdx-text-input__input" placeholder="{{captchaMsg}}" /> </div> </div> </div> </div> {{>content}} </div> <div class="overlay-footer-container position-fixed"> {{>footer}} </div> ` ); } fakeToolbar() { return this.options.fakeToolbar; } /** * Logs an event to http://meta.wikimedia.org/wiki/Schema:EditAttemptStep * * @param {Object} data */ log( data ) { mw.track( 'editAttemptStep', util.extend( data, { // eslint-disable-next-line camelcase editor_interface: this.editor } ) ); } /** * Logs an event to http://meta.wikimedia.org/wiki/Schema:VisualEditorFeatureUse * * @param {Object} data */ logFeatureUse( data ) { mw.track( 'visualEditorFeatureUse', util.extend( data, { // eslint-disable-next-line camelcase editor_interface: this.editor } ) ); } /** * If this is a new article, require confirmation before saving. * * @return {boolean} The user confirmed saving */ confirmSave() { if ( this.isNewPage && // TODO: Replace with an OOUI dialog // eslint-disable-next-line no-alert !window.confirm( mw.msg( 'mobile-frontend-editor-new-page-confirm', mwUser ) ) ) { return false; } else { return true; } } /** * Executed when page save is complete. Updates urls and shows toast message. * * @param {number|null} newRevId ID of the newly created revision, or null if it was a * null edit. * @param {string} [redirectUrl] URL to redirect to, if different than the current URL. * @param {boolean} [tempUserCreated] Whether a temporary user was created */ onSaveComplete( newRevId, redirectUrl, tempUserCreated ) { this.saved = true; if ( newRevId ) { let action; if ( this.isNewPage ) { action = 'created'; } else if ( this.options.oldId ) { action = 'restored'; } else { action = 'saved'; } this.showSaveCompleteMsg( action, tempUserCreated ); } // Ensure we don't lose this event when logging this.log( { action: 'saveSuccess', // eslint-disable-next-line camelcase revision_id: newRevId } ); if ( tempUserCreated && redirectUrl ) { // The caller handles this redirect, either in SourceEditorOverlay or in VE's ArticleTarget return; } setTimeout( () => { // Wait for any other teardown navigation to happen (e.g. router.back()) // before setting our final location. if ( redirectUrl ) { // eslint-disable-next-line no-restricted-properties window.location.href = redirectUrl; } else if ( this.sectionId ) { // Ideally we'd want to do this via replaceState (see T189173) // eslint-disable-next-line no-restricted-properties window.location.hash = '#' + this.sectionId; } else { // Cancel the hash fragment // otherwise clicking back after a save will take you back to the editor. // We avoid calling the hide method of the overlay here as this can be asynchronous // and may conflict with the window.reload call below. // eslint-disable-next-line no-restricted-properties window.location.hash = '#'; } } ); } /** * Show a save-complete message to the user * * @inheritdoc * @param {string} action One of 'saved', 'created', 'restored' * @param {boolean} [tempUserCreated] Whether a temporary user was created */ showSaveCompleteMsg( action, tempUserCreated ) { require( 'mediawiki.action.view.postEdit' ).fireHook( action, tempUserCreated ); } /** * Executed when page save fails. Handles logging the error. Subclasses * should display error messages as appropriate. * * @param {Object} data API response */ onSaveFailure( data ) { let code = data && data.errors && data.errors[0] && data.errors[0].code; const // Compare to ve.init.mw.ArticleTargetEvents.js in VisualEditor. typeMap = { badtoken: 'userBadToken', assertanonfailed: 'userNewUser', assertuserfailed: 'userNewUser', assertnameduserfailed: 'userNewUser', 'abusefilter-disallowed': 'extensionAbuseFilter', 'abusefilter-warning': 'extensionAbuseFilter', captcha: 'extensionCaptcha', // FIXME: This language is non-inclusive and we would love to change it, // but this relates to an error code provided by software. // This is blocked on T254649 spamblacklist: 'extensionSpamBlacklist', // FIXME: This language is non-inclusive and we would love to change it, // but this relates to an error code provided by software. // Removal of this line is blocked on T254650. 'titleblacklist-forbidden': 'extensionTitleBlacklist', pagedeleted: 'editPageDeleted', editconflict: 'editConflict' }; if ( data.edit && data.edit.captcha ) { code = 'captcha'; } this.log( { action: 'saveFailure', message: code, type: typeMap[code] || 'responseUnknown' } ); } /** * Report load errors back to the user. Silently record the error using EventLogging. * * @param {string} text Text (HTML) of message to display to user */ reportError( text ) { const errorNotice = new MessageBox( { type: 'error', msg: text, heading: mw.msg( 'mobile-frontend-editor-error' ) } ); this.$errorNoticeContainer.html( errorNotice.$el ); } hideErrorNotice() { this.$errorNoticeContainer.empty(); } /** * Prepares the penultimate screen before saving. * Expects to be overridden by child class. * */ onStageChanges() { this.showHidden( '.save-header, .save-panel' ); this.hideErrorNotice(); this.log( { action: 'saveIntent' } ); // Scroll to the top of the page, so that the summary input is visible // (even if overlay was scrolled down when editing) and weird iOS header // problems are avoided (header position not updating to the top of the // screen, instead staying lower until a subsequent scroll event). window.scrollTo( 0, 1 ); } /** * Executed when the editor clicks the save button. Expects to be overridden by child * class. Checks if the save needs to be confirmed. * */ onSaveBegin() { this.confirmAborted = false; this.hideErrorNotice(); // Ask for confirmation in some cases if ( !this.confirmSave() ) { this.confirmAborted = true; return; } this.log( { action: 'saveAttempt' } ); } /** * @inheritdoc */ preRender() { const options = this.options; this.options.headers = [ headers.formHeader( util.template( ` {{^hasToolbar}} <div class="overlay-title"> <h2>{{{editingMsg}}}</h2> </div> {{/hasToolbar}} {{#hasToolbar}}<div class="toolbar"></div>{{/hasToolbar}} {{#editSwitcher}} <div class="switcher-container"> </div> {{/editSwitcher}} ` ).render( { hasToolbar: options.hasToolbar, editSwitcher: options.editSwitcher, editingMsg: options.editingMsg } ), options.readOnly ? [] : [ new IconButton( { tagName: 'button', action: 'progressive', weight: 'primary', icon: 'next-invert', additionalClassNames: 'continue', disabled: true, title: options.continueMsg } ) ], mobile.cancelIcon(), 'initial-header' ), headers.saveHeader( options.previewingMsg, 'save-header hidden' ), headers.savingHeader( mw.msg( 'mobile-frontend-editor-wait' ) ) ]; } /** * @inheritdoc */ postRender() { this.$errorNoticeContainer = this.$el.find( '#error-notice-container' ); super.postRender(); this.showHidden( '.initial-header' ); } show() { this.allowCloseWindow = mw.confirmCloseWindow( { // Returns true if content has changed test: () => this.hasChanged(), // Message to show the user, if content has changed message: mw.msg( 'mobile-frontend-editor-cancel-confirm' ), // Event namespace namespace: 'editwarning' } ); this.saved = false; super.show(); // Inform other interested code that the editor has loaded /** * Internal for use in ContentTranslation and GrowthExperiments only. * * @event ~'mobileFrontend.editorOpened' * @memberof Hooks */ mw.hook( 'mobileFrontend.editorOpened' ).fire( this.editor ); } /** * Back button click handler * */ onClickBack() {} /** * Submit button click handler * */ onClickSubmit() { this.onSaveBegin(); } /** * Continue button click handler * */ onClickContinue() { this.onStageChanges(); } /** * "Edit without logging in" button click handler * */ onClickAnonymous() {} /** * @param {Function} exit Callback to exit the overlay * @param {Function} cancel Callback to cancel exiting the overlay */ onBeforeExit( exit, cancel ) { if ( this.hasChanged() && !this.switching ) { if ( !this.windowManager ) { this.windowManager = OO.ui.getWindowManager(); this.windowManager.addWindows( [ new mw.widgets.AbandonEditDialog() ] ); } this.windowManager.openWindow( 'abandonedit' ) .closed.then( ( data ) => { if ( data && data.action === 'discard' ) { // log abandonment this.log( { action: 'abort', mechanism: 'cancel', type: 'abandon' } ); this.onExit(); exit(); } } ); cancel(); return; } if ( !this.switching && !this.saved ) { // log leaving without changes this.log( { action: 'abort', mechanism: 'cancel', // if this is VE, hasChanged will be false because the Surface has // already been destroyed (which is good because it stops us // double-showing the abandon changes dialog above)... but we can // test whether there *were* changes for logging purposes by // examining the target: type: ( this.target && this.target.edited ) ? 'abandon' : 'nochange' } ); } this.onExit(); exit(); if ( mw.config.get( 'wgAction' ) === 'edit' ) { // We got into the overlay via directly visiting an action=edit // URL, which has been taken over. As such, depending on // how we got here, the normal overlay process isn't going to // produce the correct result. setTimeout( () => { // This needs to happen after the overlay-hide has completed // so we have access to the "real" URL, and `exit` // unfortunately doesn't expose a promise for this. There's // several setTimeouts within the hide, so we're just going // to use a long-enough setTimeout of our own to skip those. if ( !mw.util.getParamValue( 'veaction' ) && !mw.util.getParamValue( 'action' ) ) { // Use reload if possible, to emulate having gone back location.reload(); } else { location.href = mw.util.getUrl(); } }, 100 ); } } onExit() { // May not be set if overlay has not been previously shown if ( this.allowCloseWindow ) { this.allowCloseWindow.release(); } /** * Internal for use in ContentTranslation and GrowthExperiments only. * * @event ~'mobileFrontend.editorClosed' * @memberof Hooks */ mw.hook( 'mobileFrontend.editorClosed' ).fire(); } /** * Sets additional values used for anonymous editing warning. * * @param {Object} options * @return {jQuery.Element} */ createAnonWarning( options ) { const $actions = $( '<div>' ).addClass( 'actions' ), msg = this.gateway.wouldautocreate ? 'mobile-frontend-editor-autocreatewarning' : 'mobile-frontend-editor-anonwarning', $anonWarning = $( '<div>' ).addClass( 'anonwarning content' ).append( new MessageBox( { type: 'notice', className: 'anon-msg', // eslint-disable-next-line mediawiki/msg-doc msg: mw.message( msg, contLangMessages[ 'tempuser-helppage' ] ).parse() } ).$el, $actions ), params = util.extend( { returnto: options.returnTo || ( // use wgPageName as this includes the namespace if outside Main mw.config.get( 'wgPageName' ) + '#/editor/' + ( options.sectionId || 'all' ) ), warning: 'mobile-frontend-edit-login-action' }, options.queryParams ), signupParams = util.extend( { type: 'signup', warning: 'mobile-frontend-edit-signup-action' }, options.signupQueryParams ), anonymousEditorActions = [ new Button( { label: mw.msg( 'mobile-frontend-editor-anon' ), block: true, additionalClassNames: 'anonymous progressive', progressive: true } ), new Button( { block: true, href: mw.util.getUrl( 'Special:UserLogin', params ), label: mw.msg( 'mobile-frontend-watchlist-cta-button-login' ) } ), new Button( { block: true, href: mw.util.getUrl( 'Special:UserLogin', util.extend( params, signupParams ) ), label: mw.msg( 'mobile-frontend-watchlist-cta-button-signup' ) } ) ]; $actions.append( anonymousEditorActions.map( ( action ) => action.$el ) ); return $anonWarning; } /** * Creates and returns a copy of the anon talk message warning * * @return {jQuery.Element} */ createAnonTalkWarning() { return $( '.minerva-anon-talk-message' ).clone(); } /** * Get an options object not containing any defaults or editor * specific options, so that it can be used to construct a * different editor for switching. * * @return {Object} Options */ getOptionsForSwitch() { // Only preserve options that would be passed in editor.js#setupEditor // and skip over defaults. return { switched: true, overlayManager: this.options.overlayManager, currentPageHTMLParser: this.options.currentPageHTMLParser, fakeScroll: this.options.fakeScroll, api: this.options.api, licenseMsg: this.options.licenseMsg, title: this.options.title, titleObj: this.options.titleObj, isAnon: this.options.isAnon, isNewPage: this.options.isNewPage, oldId: this.options.oldId, contentLang: this.options.contentLang, contentDir: this.options.contentDir, sectionId: this.options.sectionId }; } /** * Checks whether the state of the thing being edited as changed. Expects to be * implemented by child class. * */ hasChanged() {} /** * Get a promise that is resolved when the editor data has loaded, * or rejected when we're refusing to load the editor because the user is blocked. * * @return {jQuery.Promise} */ getLoadingPromise() { return this.dataPromise.then( ( result ) => { // check if user is blocked if ( result && result.blockinfo ) { const block = parseBlockInfo( result.blockinfo ), message = blockMessageDrawer( block ); return util.Deferred().reject( message ); } return result; } ); } showEditNotices() { Iif ( mw.config.get( 'wgMFEditNoticesFeatureConflict' ) ) { return; } this.getLoadingPromise().then( ( data ) => { Iif ( data.notices ) { const editNotices = Object.keys( data.notices ).filter( ( key ) => { if ( key.indexOf( 'editnotice' ) !== 0 ) { return false; } if ( key === 'editnotice-notext' ) { // This notice is shown on pages which don't have any // other edit notices. It's blank by default, but // some wikis have it template-generated and hidden // by CSS. It's filtered out from VE's API response, // but not from the source mode. return false; } // The contents of an edit notice is unlikely to change in the 24 hour // expiry window, so just record that a notice with this key has been shown. // If a cheap hashing function was available in core (or the API provided // as hash) it could be used here instead. const storageKey = 'mf-editnotices/' + mw.config.get( 'wgPageName' ) + '#' + key; if ( mw.storage.get( storageKey ) ) { return false; } mw.storage.set( storageKey, '1', 24 * 60 * 60 ); return true; } ); if ( editNotices.length ) { mw.loader.using( 'oojs-ui-windows' ).then( () => { const $container = $( '<div>' ).addClass( 'editor-overlay-editNotices' ); editNotices.forEach( ( key ) => { const $notice = $( '<div>' ).append( data.notices[ key ] ); $notice.addClass( 'editor-overlay-editNotice' ); $container.append( $notice ); } ); OO.ui.alert( $container ); this.logFeatureUse( { feature: 'notices', action: 'show' } ); } ); } } } ); } /** * Handles a failed save due to a CAPTCHA provided by ConfirmEdit extension. * * @param {Object} details Details returned from the api. */ handleCaptcha( details ) { const $input = this.$el.find( '.captcha-word' ); if ( this.captchaShown ) { $input.val( '' ); $input.attr( 'placeholder', this.options.captchaTryAgainMsg ); setTimeout( () => { $input.attr( 'placeholder', this.options.captchaMsg ); }, 2000 ); } // handle different mime types different if ( details.mime.indexOf( 'image/' ) === 0 ) { // image based CAPTCHA's like provided by FancyCaptcha, ReCaptcha or similar this.$el.find( '.captcha-panel#question' ).detach(); this.$el.find( '.captcha-panel img' ).attr( 'src', details.url ); } else { // not image based CAPTCHA. this.$el.find( '.captcha-panel #image' ).detach(); if ( details.mime.indexOf( 'text/html' ) === 0 ) { // handle mime type of HTML as HTML content (display as-is). // QuestyCaptcha now have default MIME type "text/html": see T147606 this.$el.find( '.captcha-panel #question' ).html( details.question ); } else { // handle mime types // (other than image based ones and HTML based ones) // as plain text by default. // e.g. MathCaptcha (solve a math formula) or // SimpleCaptcha (simple math formula) this.$el.find( '.captcha-panel #question' ).text( details.question ); } } this.showHidden( '.save-header, .captcha-panel' ); this.captchaShown = true; } } module.exports = EditorOverlayBase; |