We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b2050a commit 4e7310dCopy full SHA for 4e7310d
scripts/community/inventory.js
@@ -37,12 +37,13 @@
37
document.getElementById( 'market_sell_currency_input' ).value = this.dataset.price / 100;
38
39
window.SellItemDialog.OnInputKeyUp( null ); // Recalculate prices
40
- window.SellItemDialog.OnAccept( dummySellEvent );
41
42
if( options[ 'enhancement-inventory-quick-sell-auto' ] )
43
{
+ // SSA must be accepted before OnAccept call, as it has a check for it
44
document.getElementById( 'market_sell_dialog_accept_ssa' ).checked = true;
45
46
+ window.SellItemDialog.OnAccept( dummySellEvent );
47
window.SellItemDialog.OnConfirmationAccept( dummySellEvent );
48
}
49
};
0 commit comments