diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 65baa1f73..b2fea104b 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -9928,9 +9928,10 @@ if (g.BOARD.ID === 'f' && g.VIEW !== 'thread') { nodes.flashTag = $.el('select', { name: 'filetag' - }, $.extend(nodes.flashTag, { + }); + $.extend(nodes.flashTag, { innerHTML: "" - })); + }); nodes.flashTag.dataset["default"] = '4'; $.add(nodes.form, nodes.flashTag); } diff --git a/builds/crx/script.js b/builds/crx/script.js index c84763496..febec49da 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -9971,9 +9971,10 @@ if (g.BOARD.ID === 'f' && g.VIEW !== 'thread') { nodes.flashTag = $.el('select', { name: 'filetag' - }, $.extend(nodes.flashTag, { + }); + $.extend(nodes.flashTag, { innerHTML: "" - })); + }); nodes.flashTag.dataset["default"] = '4'; $.add(nodes.form, nodes.flashTag); } diff --git a/src/Posting/QR.coffee b/src/Posting/QR.coffee index 3c4285158..5c73b51bb 100644 --- a/src/Posting/QR.coffee +++ b/src/Posting/QR.coffee @@ -455,7 +455,9 @@ QR = nodes.addPost.tabIndex = 35 if g.BOARD.ID is 'f' and g.VIEW isnt 'thread' - nodes.flashTag = $.el 'select', name: 'filetag', + nodes.flashTag = $.el 'select', + name: 'filetag' + $.extend nodes.flashTag, <%= html( '' + '' + @@ -465,6 +467,7 @@ QR = '' + '' ) %> + nodes.flashTag.dataset.default = '4' $.add nodes.form, nodes.flashTag