[00:00:35] Hehe. Now I'll feel smarter than MatmaRex if I manage to make *any* progress. [00:00:36] :P [00:00:59] Probably completely un-justified, but .... [00:03:23] probably just more of a masochist [00:03:46] IE11's dev tools are actually rather pleasant. [00:12:00] 3MediaWiki-ResourceLoader: On complex installations with many custom JS resources, some Javascript files fail to load - https://phabricator.wikimedia.org/T48928#946395 (10Aklapper) p:5High>3Low Wondering if this is still an issue. (I initially set this to high priority when this got reported.) Krinkle's que... [01:10:20] 3MediaWiki-ResourceLoader: mw.loader.store should not occupy all of localStorage - https://phabricator.wikimedia.org/T66721#946503 (10Technical13) ``` "NS_ERROR_DOM_QUOTA_REACHED: Persistent storage maximum size reached" DOMException [ NS_ERROR_DOM_QUOTA_REACHED: "Persistent storage maximum size reached" c... [01:58:41] 3MediaWiki-ResourceLoader: mw.loader.store should not occupy all of localStorage - https://phabricator.wikimedia.org/T66721#946527 (10Technical13) Apparently I had 1,772,879 characters in localStorage on test.wikipedia.org. Since this is so large, I've been unable to find a pastebin to paste it all to. [05:11:51] 3VisualEditor, VisualEditor-CopyPaste: Copy and paste inside VE includes black sun ☀ character - https://phabricator.wikimedia.org/T85432#946567 (10Jaredzimmerman-WMF) 3NEW [05:12:50] 3VisualEditor, VisualEditor-CopyPaste: Copy and paste inside VE includes black sun ☀ character - https://phabricator.wikimedia.org/T85432#946567 (10Jaredzimmerman-WMF) [11:13:05] 3VisualEditor: Safari Error: kCFErrorDomainCFNetwork -10 when loading VE - https://phabricator.wikimedia.org/T85231#946890 (10TheDJ) Not just beta labs, I see it on production too. [Error] Failed to load resource: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error -10.) (data:image/gif;base64,R0... [16:28:20] 3MediaWiki-Page-editing: Private pages can be transcluded into public pages - https://phabricator.wikimedia.org/T10462#947206 (10jeremyb-phone) [16:29:06] 3MediaWiki-extensions-BetaFeatures, VisualEditor: VisualEditor incompatible with "Fixed header" beta feature - https://phabricator.wikimedia.org/T85247#947208 (10Etonkovidova) Yes, unchecking 'Fixed header' makes VE be back to normal. Should be there some warning to VE users? [16:29:31] 3MediaWiki-extensions-BetaFeatures, VisualEditor: VisualEditor incompatible with "Fixed header" beta feature - https://phabricator.wikimedia.org/T85247#947209 (10Etonkovidova) 5Open>3Invalid [16:37:17] Which namespaces are enabled on enwp? Is there a mw.config or mw.user.option that lists them? [16:39:51] What is 'namespacesWithSubpages' nested under 'wgVisualEditor'? [16:41:22] Can I pull a list from the api? [16:46:16] wgVisualEditorNamespaces IIRC T13|NeedsCoffee ? [16:47:00] 3VisualEditor, VisualEditor-CopyPaste: Copy and paste inside VE includes black sun ☀ character - https://phabricator.wikimedia.org/T85432#947229 (10Etonkovidova) Did editng the page involve cut/paste? Most likely then it's the same issue as in .as in https://phabricator.wikimedia.org/T76916 - Pasting an external... [16:48:57] null Krenair [16:49:17] But... [16:49:21] Let me.. [16:49:24] It's definitely set in the PHP... [16:49:31] you want this in JS? [16:49:48] Yes [16:50:08] wgVisualEditorConfig.namespaces [16:51:16] That will work. Returns an array of namespace numbers.. [16:53:13] Is there an array or object someplace I can use to tie the numbers to the canonical? I can build one if I have to. [17:05:14] 3MediaWiki-extensions-BetaFeatures, VisualEditor: VisualEditor incompatible with "Fixed header" beta feature - https://phabricator.wikimedia.org/T85247#947266 (10Se4598) 5Invalid>3Open reopening: what's invalid here? (tasktitle had been changed to reflect incompatibility) [17:11:19] T13|NeedsCoffee: there are a few wgNamespaceWhatever mw.config entries [17:11:51] 3MediaWiki-extensions-BetaFeatures, VisualEditor: VisualEditor incompatible with "Fixed header" beta feature - https://phabricator.wikimedia.org/T85247#947280 (10Etonkovidova) Thought that since it's by design - not an issue/bug. [17:16:02] wgNamespaceIds got it, thanks MatmaRex. :) [17:30:38] Corruption alert: visualeditor-needcheck on frwiki: https://fr.wikipedia.org/?diff=110340645 [17:30:38] Corruption alert: visualeditor-needcheck on zhwiki: https://zh.wikipedia.org/?diff=33769762 [17:30:38] Corruption alert: visualeditor-needcheck on zhwiki: https://zh.wikipedia.org/?diff=33771459 [17:30:38] Corruption alert: visualeditor-needcheck on zhwiki: https://zh.wikipedia.org/?diff=33771488 [17:30:38] Corruption alert: visualeditor-needcheck on dewiki: https://de.wikipedia.org/?diff=137197457 [17:30:39] Corruption alert: visualeditor-needcheck on itwiki: https://it.wikipedia.org/?diff=69891103 [17:30:39] Corruption alert: visualeditor-needcheck on itwiki: https://it.wikipedia.org/?diff=69907001 [17:30:40] Corruption alert: visualeditor-needcheck on trwiki: https://tr.wikipedia.org/?diff=14966838 [17:33:37] Krenair: I'm looking at the output for wgVisualEditorConfig.namespaces and 2 is listed twice for some reason. Bug? [17:43:45] what wiki? [17:46:58] 2 is NS_USER [17:47:09] and wikimedia config adds user. but VE already adds it, so... [17:50:19] Krenair: enwp [17:52:41] [0,2,100,108,118,2,6,12,14] is what I get. [17:53:52] [,user,file,help,category,portal,book,draft,image] is what it translates into when I adjust it. [17:54:41] var visualEditorNamespaces = []; $.each(mw.config.get('wgNamespaceIds'), function( i, v ){ if($.inArray(v, wgVisualEditorConfig.namespaces) !== -1){ visualEditorNamespaces[visualEditorNamespaces.length] = i; } }); [17:54:43] Is what I use to convert it.. [18:22:26] 3VisualEditor, VisualEditor-ContentEditable, VisualEditor-Tables: Blue hover highlights of focusable nodes inside a table are not updated immediately after a table cell is "focused", making it possible to do things to them - https://phabricator.wikimedia.org/T85020#947364 (10Whatamidoing-WMF) [18:22:47] 3VisualEditor, VisualEditor-ContentEditable, VisualEditor-Tables: Allow keyboard arrows to move within the table - https://phabricator.wikimedia.org/T84851#947365 (10Whatamidoing-WMF) [18:22:56] 3VisualEditor, VisualEditor-ContentEditable, VisualEditor-Tables: Allow wikiformat in tables - https://phabricator.wikimedia.org/T84850#947367 (10Whatamidoing-WMF) [18:23:41] 3VisualEditor, VisualEditor-Tables: Cannot scroll down when editing long tables - https://phabricator.wikimedia.org/T76891#947376 (10Whatamidoing-WMF) [18:24:07] 3VisualEditor, VisualEditor-ContentEditable, VisualEditor-Tables: VisualEditor: Tables that are inserted into Media captions will display Table caption below the table - https://phabricator.wikimedia.org/T75435#947377 (10Whatamidoing-WMF) [18:24:45] 3VisualEditor-EditingTools, VisualEditor-Tables, VisualEditor: VisualEditor: Merging cells across table sections causes some cells to disappear - https://phabricator.wikimedia.org/T75222#947382 (10Whatamidoing-WMF) [18:30:14] 3VisualEditor-EditingTools, VisualEditor-Tables, VisualEditor: VisualEditor: Table with some template-generated rows appears with additional jumbled empty table cells – enwiki's {{Singlechart}} template - https://phabricator.wikimedia.org/T70306#947388 (10Whatamidoing-WMF) [18:34:18] 3VisualEditor, VisualEditor-Tables: Support the editing of "tables" that are composed of templates - https://phabricator.wikimedia.org/T85462#947402 (10Whatamidoing-WMF) 3NEW [18:42:14] 3VisualEditor, VisualEditor-Tables: Missing cells look like they're present in Firefox - https://phabricator.wikimedia.org/T85463#947421 (10Whatamidoing-WMF) 3NEW [18:43:17] 3VisualEditor, VisualEditor-Tables: Make it possible to insert a missing cell into a table - https://phabricator.wikimedia.org/T85464#947430 (10Whatamidoing-WMF) 3NEW [18:43:23] 3VisualEditor, VisualEditor-Tables: Cannot select multiple cells in tables Internet Explorer 11 - https://phabricator.wikimedia.org/T85418#947436 (10Aklapper) > I am unable to select multiple cells in a table in Internet Explorer 11. How do you try to select multiple cells exactly? Steps to reproduce are welcome. [18:49:56] Krenair: is https://en.wikipedia.org/wiki/User:Technical_13/Scripts/Gadget-veditLinks.js something that the VE team might be interested in making an on-by default gadget for editors using VisualEditor on enwp? [18:50:37] 3VisualEditor, VisualEditor-Tables: Cannot select multiple cells in tables Internet Explorer 11 - https://phabricator.wikimedia.org/T85418#947452 (10Leaderboard) I tried to use my mouse to select multiple cells. Dragging them , using CRTL , FN or ALT all did not work. [18:53:06] Technical_13, so what does this do exactly? [18:54:23] Apparently I need to tweak it... It was working in console but isn't working live. Anyways, it is suppose to change "edit" links to "edit source | edit beta" links for users of visual editor. https://en.wikipedia.org/wiki/Template:Ln#Examples [18:55:16] 3MediaWiki-ResourceLoader: ResourceLoader: Implement support for Source Maps - https://phabricator.wikimedia.org/T47514#947462 (10MarkAHershberger) Source maps would also help Internet Explorer: http://msdn.microsoft.com/en-us/library/ie/dn255007(v=vs.85).aspx#source_maps [18:56:59] Okay, now it is working again... It was the attempt to make it change all "edit" to "edit source" even if no VE link was added. Will sandbox that some more. :) [18:57:48] in the console on https://en.wikipedia.org/wiki/Template:Ln#Examples do a importScript('User:Technical 13/Scripts/Gadget-veditLinks.js');// and you should be able to see it. [18:58:51] I need to test more browsers and the various skins, just curious if it is something that you guys would support as part of VE or if will have to put up an RfC on the matter. :) [19:00:35] I tried to make it as generic as possible which is why it pulls a list of Namespaces that VE is enabled in and compares against that. [19:00:45] So, it should work on other wikis using the same Lx templates. [19:03:31] So it's obviously not something that can go into the VE repositories. [19:04:14] Technical_13, it also relies on wikimedia's article/script paths [19:04:21] doesn't follow code conventions [19:04:21] etc. [19:05:07] What parts don't follow code conventions? [19:05:12] Technical_13, have you read https://mediawiki.org/wiki/CC/JS ? [19:05:12] I'd like to fix that. [19:05:24] The vast majority of it. [19:05:38] I've picked through that page. [19:06:56] It seems I have some spacing fixes and I need to close... I'll fix that. Anything else? [19:10:04] 3VisualEditor, VisualEditor-MediaWiki-Media: Cannot re-use a citation in an image caption - https://phabricator.wikimedia.org/T85465#947490 (10Whatamidoing-WMF) 3NEW [19:13:27] Technical_13, done: https://en.wikipedia.org/?diff=640128190 [19:14:13] [14:12] <+wm-bot3> Technical_13: [[User:Krenair]] modified [[User:Technical 13/Scripts/Gadget-veditLinks.js]] ( code style fixes ) ▶ https://en.wikipedia.org/w/index.php?diff=640128190 [14:13] <+wm-bot3> Technical_13: [[User:Technical 13]] modified [[User:Technical 13/Scripts/Gadget-veditLinks.js]] ( close ) ▶ https://en.wikipedia.org/w/index.php?diff=640128255 [14:13] <+wm-bot3> Technical_13: [[User:Technical 13]] modified [19:14:45] I added the stuff from https://www.mediawiki.org/wiki/Manual:Coding_conventions/JavaScript#Closure [19:18:54] 3VisualEditor, VisualEditor-Tables: Cannot select multiple cells in tables Internet Explorer 11 - https://phabricator.wikimedia.org/T85418#947513 (10matmarex) Confirming. I'm unable to select multiple cells by click-dragging using IE 11. I get a JS error: "Object doesn't support property or method 'getMatrixCell... [19:21:36] I'm not sure what I can do about the article/script path issue because I don't see it. Do you mean the /\/w(iki\/|\/index.php\?title=)([\w]*)(:.*)?/i ? If so, I'm not sure how I could fix that to be more generic. [19:23:29] yeah, you probably can't without losing your sanity [19:24:11] MatmaRex: You assume too much. ;) [19:24:33] the script also depends on the "lx" class, on using "|" as link separator, on using the English language, and on not using action paths [19:24:41] and probably a number of other less obvious ;) things [19:29:07] 3OOjs-UI: OOJS UI should have a central hub that lives outside MediaWiki.org - https://phabricator.wikimedia.org/T85466#947528 (10Jdlrobson) 3NEW [19:29:20] 3OOjs-UI: No demo for LookupInputWidget - https://phabricator.wikimedia.org/T85467#947534 (10Jdlrobson) 3NEW [19:37:14] (03PS28) 10Mooeypoo: [WIP] Transform the search widget to show image details [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/161342 [19:37:26] This is designed for the {{Lx}} series of templates, which all use `.lx`, so I'm not sure what I could do about that. It'll be a real pain to pull the link separator from the span.lx, but I can probably do it if it will make a difference. I tried to make it not English dependant, and I thought I had done it well... [19:37:32] MatmaRex: ^ [19:37:45] 3VisualEditor-EditingTools, VisualEditor: VisualEditor: Support galleries - https://phabricator.wikimedia.org/T45037#947548 (10Whatamidoing-WMF) Gallery formatting, such as centering it, should also be included in this. [19:38:23] 3VisualEditor, VisualEditor-ContentEditable: Enable VE in editing galleries - https://phabricator.wikimedia.org/T78544#947550 (10Whatamidoing-WMF) [19:38:25] 3VisualEditor-EditingTools, VisualEditor: VisualEditor: Support galleries - https://phabricator.wikimedia.org/T45037#947551 (10Whatamidoing-WMF) [19:38:30] oh.. Wait.. English dependant, you mean "edit" v "edit source" v "edit beta"? [19:39:01] I suppose I could pull the text from the caction tabs and that would reduce the English... [19:39:25] Is there anything else I'm missing there? [19:40:53] VE does parse links for some things [19:41:05] to get the title out [19:43:45] (03PS29) 10Mooeypoo: [WIP] Transform the search widget to show image details [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/161342 [19:44:05] https://github.com/wikimedia/mediawiki-extensions-VisualEditor/blob/master/modules/ve-mw/ce/nodes/ve.ce.MWTransclusionNode.js#L134-L145 [19:44:11] 3VisualEditor: Undoing the insertion of a template leaves almost all of the toolbar grayed out - https://phabricator.wikimedia.org/T85468#947556 (10Whatamidoing-WMF) 3NEW [19:49:42] 3VisualEditor, VisualEditor-ContentEditable: VisualEditor: Editing window does not scroll when dragging - https://phabricator.wikimedia.org/T53669#947574 (10Whatamidoing-WMF) This appears to be OS-specific. I do not have this problem (either scrolling up or down) on Mac OS 10.8.5; I know that at least two edito... [19:50:29] They're not wikilinks though... they are .external.text [20:05:49] 3VisualEditor-MediaWiki, VisualEditor: Users are requesting a "Cancel and exit without saving" option - https://phabricator.wikimedia.org/T85470#947596 (10Whatamidoing-WMF) 3NEW [20:12:12] Technical_13, hey [20:12:18] Hey... [20:12:25] Season's greetings! Does anyone know how the metrics at were calculated? for example, where abort rates calculated like: abort rates in 24 hours/24? [20:12:30] I realised that I made it break and how, stupid first line mistake. [20:12:33] fixed now. [20:12:59] https://en.wikipedia.org/w/index.php?title=User%3ATechnical_13%2FScripts%2FGadget-veditLinks.js&diff=640128300&oldid=640128190 I saw you made this though Technical_13 [20:13:27] I saw that. I'm currious why you did away with all my typeof()s. :) [20:13:56] https://www.mediawiki.org/wiki/Manual:Coding_conventions/JavaScript#Type_checks [20:14:17] And also "Don't use operators as if they are functions (such as delete, void, typeof, new, return, ..)." under Whitespace [20:14:32] 3VisualEditor-EditingTools, VisualEditor, VisualEditor-Tables: VisualEditor: Merging cells across table sections causes some cells to disappear - https://phabricator.wikimedia.org/T75222#947621 (10matmarex) [20:14:47] anyway, do you understand why those changes you made in the link I just sent wouldn't work? [20:15:11] No. [20:15:52] Was trying to follow https://www.mediawiki.org/wiki/Manual:Coding_conventions/JavaScript#Closure [20:16:27] Is it just a matter of dumping the $ at the front? I would have figured that out if it was. [20:16:53] Is loading it as jQuery conflicting with something else? [20:17:27] before it, you were passing a function as a parameter to the $ function (jQuery) [20:17:46] Ah, yeah, I would have figured that out. ;) [20:17:51] which ran the function when the page was loaded [20:18:06] with this change you called the function and gave the return result to jQuery [20:18:29] But I wouldn't have understood why. [20:20:55] so you can take the closure example from the CC page and put your $( function () { ... } ) code inside it [20:24:37] [15:24] <+wm-bot3> Technical_13: [[User:Technical 13]] modified [[User:Technical 13/Scripts/Gadget-veditLinks.js]] ( Per [[mw:Manual:Coding conventions/JavaScript]] ) ▶ https://en.wikipedia.org/w/index.php?diff=640137101 [20:25:07] Would it improve anything doing that? [20:35:25] Technical_13, why did you move the thisLinkNS variable declaration outside the function it's used in? [20:38:12] To keep from re-declaring it for every link? [20:56:49] Krenair: https://en.wikipedia.org/w/index.php?diff=640141550 better? [20:58:50] To work on the "English" thing, are the words for ['edit', 'edit source', 'edit beta'] stored someplace I can always access them like a js variable or a set of MediaWiki: pages I can get from the API or something? [20:58:54] are you really supposed to be going over wgNamespaceIds twice? [20:59:24] those are messages [20:59:56] Thanks, I hadn't noticed that. merged. [21:00:36] and you are using mw.config to get that, but not wgVisualEditorConfig [21:01:45] Technical_13, all the text like that are messages [21:01:57] you need mw.msg and the message key [21:02:09] https://en.wikipedia.org/wiki/Special:AllMessages?prefix=Visualeditor&limit=500 ? [21:02:20] https://en.wikipedia.org/w/index.php?title=Special%3AAllMessages&prefix=Visualeditor-ca-&filter=all&lang=en&limit=500 ? [21:02:44] https://github.com/wikimedia/mediawiki-extensions-VisualEditor/blob/master/VisualEditor.php#L1544-L1581 [21:02:53] I don't see 'edit beta' in the system messages... [21:05:43] Meh, I see... I have to paste it together myself... [21:06:03] !doc mw.msg [21:06:11] *sigh*... [21:07:51] you see those appendix ones at the bottom of the page I linked to? [21:08:06] Yes, I need to paste them to the default. [21:09:07] https://github.com/wikimedia/mediawiki-extensions-VisualEditor/blob/master/modules/ve-mw/init/targets/ve.init.mw.ViewPageTarget.init.js#L224-L238 [21:20:22] (03PS13) 10Paladox: Re add svg images [extensions/WikiEditor] - 10https://gerrit.wikimedia.org/r/181786 [21:20:34] (03PS4) 10Paladox: Adds svg to css file [extensions/WikiEditor] - 10https://gerrit.wikimedia.org/r/181788 [21:20:40] (03PS3) 10Paladox: Convert .css to .less [extensions/WikiEditor] - 10https://gerrit.wikimedia.org/r/181790 [21:26:32] Krenair: The code there expects you to be on the page to make the links... It uses pageExists = !!mw.config.get( 'wgRelevantArticleId' ); [21:27:17] I think you only need to handle edit links, not create. right? [21:27:22] How would I figure out if the page exists without being on it? Check the class of the page's link for "new"? [21:27:34] Probably.. [21:27:37] I will adapt. :) [21:29:10] That has a static 'edit' set btw, that doesn't seem to be much better... [21:29:58] The only parts that might be adapted is the appendix part. [21:31:57] mw.msg( mw.config.get( 'wgVisualEditorConfig' ).tabMessages[ 'editappendix' ] ) does get me beta though it seems convoluted and overly complex to me. [21:35:00] mw.msg( mw.config.get( 'wgVisualEditorConfig' ).tabMessages[ 'editsource' ] );//is edit source... I can add that.. [21:37:10] 3VisualEditor-ContentEditable, VisualEditor: Allow to add special characters to infobox - https://phabricator.wikimedia.org/T85477#947765 (10Juandev) 3NEW [21:37:25] mw.msg( mw.config.get( 'wgVisualEditorConfig' ).tabMessages[ 'edit' ] );// Seems to return null instead of "If null, the default edit tab caption will be used. The 'visualeditor-ca-ve-edit' message is available for this" [21:42:27] Krenair: I figured out how to get all except the 'edit' part... [21:47:23] I see it now... :) [21:53:06] 3VisualEditor, VisualEditor-Tables: Cannot select multiple cells in tables Internet Explorer 11 - https://phabricator.wikimedia.org/T85418#947814 (10Etonkovidova) If in Tools->Advanced "Disable a notification about every script error" option is un-checked(ie enabled), the JS error: 'Object doesn't support proper... [21:56:55] So, I've got everything except it still requires the link text to be 'edit'. Because I don't know what the key is to pull the system message for "linktext" which should contain the localized word for 'edit' [21:57:12] 3MobileFrontend-beta, Editing, VisualEditor: in MobileFrontend, invoking the editor is incorrect and switching from VisualEditor to wikitext editor does nothing - https://phabricator.wikimedia.org/T85480#947820 (10Cmcmahon) 3NEW [21:59:38] [16:59] <+wm-bot3> Technical_13: [[User:Technical 13]] modified [[User:Technical 13/Scripts/Gadget-veditLinks.js]] ( Let's make this less language dependent. Still need to figure out how to get [[MediaWiki:Editlink]]'s text... ) ▶ https://en.wikipedia.org/w/index.php?diff=640150150 [22:09:05] 3MobileFrontend-beta, Editing, VisualEditor: Back arrow appears before other VE controls but does nothing - https://phabricator.wikimedia.org/T85481#947855 (10Cmcmahon) 3NEW [22:10:35] 3MobileFrontend-beta, Editing, VisualEditor: in MobileFrontend, invoking the editor is incorrect and switching from VisualEditor to wikitext editor does nothing - https://phabricator.wikimedia.org/T85480#947861 (10Cmcmahon) [22:24:35] 3MobileFrontend-beta, Editing, VisualEditor: in MobileFrontend, invoking the editor is incorrect and switching from VisualEditor to wikitext editor does nothing - https://phabricator.wikimedia.org/T85480#947889 (10Etonkovidova) The following error is displayed: Uncaught TypeError: boolean is not a functionload.... [22:26:02] 3VisualEditor-MediaWiki-Mobile, VisualEditor, Mobile-Web: [Regression pre-wmf14] Cannot switch from VE to wikitext editor in Mobile Web - https://phabricator.wikimedia.org/T84897#947891 (10Etonkovidova) Checked in betalabs - the issue is fixed. However, https://phabricator.wikimedia.org/T85480 - cannot switch fr... [22:33:27] 3VisualEditor-ContentEditable, VisualEditor: Allow to add special characters to infobox - https://phabricator.wikimedia.org/T85477#947903 (10Etonkovidova) For templates fields special characters can be inserted with normal keyboard shortcuts - e.g. on Mac Option+z for Ω. But having a toolbox available when edi... [22:37:27] Technical_13, you're looking for mw.msg( 'editsection' ) I think? [22:39:01] returns "" [22:39:46] yeah you need to actually load it into the JS first [22:42:14] How? [22:43:03] [17:30] Technical_13: using messages properly in gadgets is a feature of 2.0. For now you can just hit the allmessages API endpoint or hardcode it (what most scripts do) [22:43:05] Krenair: ^^ ?? [22:45:18] Krenair: <+wm-bot3> Technical_13: [[User:Technical 13]] modified [[User:Technical 13/Scripts/Gadget-veditLinks.js]] ( No important language dependencies (overlooking the console.warn() for it it can't find an href). ) ▶ https://en.wikipedia.org/w/index.php?diff=640155377 look better? [22:46:32] Oh that's a 2.0 thing? damn [22:47:36] Apparently. [22:52:15] 3VisualEditor: Insert/Template inspector should put focus on input text_field when invoked but no longer does - https://phabricator.wikimedia.org/T85484#947930 (10Cmcmahon) 3NEW [23:24:03] 3VisualEditor: Undoing the insertion of a template leaves almost all of the toolbar grayed out - https://phabricator.wikimedia.org/T85468#947997 (10Etonkovidova) On Mac 10.9.5 Chrome in betalabs - with Undo for templates Infobox and Cite web - all options are still available(do not become greyed out). [23:28:23] 3Editing, MobileFrontend-beta, VisualEditor: in MobileFrontend, invoking the editor is incorrect and switching from VisualEditor to wikitext editor does nothing - https://phabricator.wikimedia.org/T85480#948005 (10Jdlrobson) a:3Jdlrobson [23:30:45] 3Mobile-Web, VisualEditor, Editing: in MobileFrontend, invoking the editor is incorrect and switching from VisualEditor to wikitext editor does nothing - https://phabricator.wikimedia.org/T85480#948013 (10Jdlrobson) [23:41:27] 3VisualEditor, VisualEditor-MediaWiki-Media: Cannot re-use a citation in an image caption - https://phabricator.wikimedia.org/T85465#948048 (10Etonkovidova) It seems that the citations that are available for Re-use in the Media dialog are only those that were already inserted in it. - open Media dialog and inse...