mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
6e73aaf86c
The main components are: - a menu of formula fragment buttons - an ace editor text input into which LaTeX commands are inserted on clicking the buttons - a preview of the formula The deviations from the draft design (full-width menu, smaller buttons, dialog is 'larger' instead of 'large') are so that more buttons can be seen at once. Depends on Ia0f46da2d4 in ve-mw Depends on Ib75fb7b087 in ve-mw Depends on I758f90abb9 in ve-mw Depends on Ibcd941d938 in CodeEditor Depends on Ie814f59086 in oojs-ui Depends on If540670bf2 in oojs-ui Depends on I5f70f133b7 in ve core Bug: T114163 Bug: T118617 Bug: T118618 Change-Id: I96d4b72f2e49ad3f43a2e5c71f0d348fdfb35503
27 lines
336 B
Plaintext
27 lines
336 B
Plaintext
{
|
|
// Enforcing
|
|
"bitwise": true,
|
|
"eqeqeq": true,
|
|
"freeze": true,
|
|
"latedef": true,
|
|
"noarg": true,
|
|
"nonew": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
"strict": false,
|
|
|
|
// Relaxing
|
|
"es5": false,
|
|
|
|
// Environment
|
|
"browser": true,
|
|
"jquery": true,
|
|
|
|
"globals": {
|
|
"mediaWiki": false,
|
|
"OO": false,
|
|
"ve": false,
|
|
"mw": false
|
|
}
|
|
}
|