mediawiki.action.edit: Add TODO referencing T6714
authorJames D. Forrester <jforrester@wikimedia.org>
Thu, 20 Jul 2017 19:18:44 +0000 (12:18 -0700)
committerJforrester <jforrester@wikimedia.org>
Tue, 1 Aug 2017 20:55:13 +0000 (20:55 +0000)
Change-Id: Ifa5ba02d8e45b2529c17ba045e13fd6360569f4b

resources/src/mediawiki.action/mediawiki.action.edit.js

index 5b81017..35b1b80 100644 (file)
@@ -17,7 +17,9 @@
         */
 
        $( function () {
-               var editBox, scrollTop, $editForm;
+               var editBox, scrollTop, $editForm,
+                       // TODO T6714: Once this can be adjusted, read this from config.
+                       summaryByteLimit = 255;
 
                if ( $( '#editform' ).hasClass( 'mw-editform-ooui' ) ) {
                        mw.loader.using( 'oojs-ui-core' ).then( function () {
                                // Show a byte-counter to users with how many bytes are left for their edit summary.
                                // TODO: This looks a bit weird, as there is no unit in the UI, just numbers; showing
                                // 'bytes' confused users in testing, and showing 'chars' would be a lie. See T42035.
-                               mw.widgets.visibleByteLimit( wpSummary, 255 );
+                               mw.widgets.visibleByteLimit( wpSummary, summaryByteLimit );
                        } );
                } else {
                        // Make sure edit summary does not exceed byte limit
-                       $( '#wpSummary' ).byteLimit( 255 );
+                       $( '#wpSummary' ).byteLimit( summaryByteLimit );
                }
 
                // Restore the edit box scroll state following a preview operation,