jsdialog based calc tab-bar, removed jquery-contextmenu#15423
jsdialog based calc tab-bar, removed jquery-contextmenu#15423dennisfrancis wants to merge 7 commits intomainfrom
Conversation
0493856 to
5f21ff9
Compare
|
Hi @dennisfrancis! Is this PR ready for review? If so, could you add the appropriate reviewer(s)? Thanks! 🙂 |
This still needs some work. I've marked this as draft. Thanks. |
5f21ff9 to
3717806
Compare
3717806 to
807bb3c
Compare
|
please rebase to pass tests |
807bb3c to
3e05872
Compare
|
CI fails in impress mobile: But I can't reproduce this with latest online main branch. |
3e05872 to
3d9dfbd
Compare
2653686 to
bfe7fb7
Compare
eszkadev
left a comment
There was a problem hiding this comment.
Worked well for me, I removed also the library itself.
Adding second reviewer
This is related to #13948 Signed-off-by: Dennis Francis <dennis.francis@collabora.com> Change-Id: Ie8b1b0e12946d3a1d87f0104ed174623f068ea89
Signed-off-by: Dennis Francis <dennis.francis@collabora.com> Change-Id: Id63728812ce4142a4549fbdedfcf9bde85859c79
Signed-off-by: Dennis Francis <dennis.francis@collabora.com> Change-Id: I668c711dbac98cead4fe2ed3715906b484387f76
Signed-off-by: Dennis Francis <dennis.francis@collabora.com> Change-Id: I85462dd7acf2c129dcc402b69dbc068a26772316
Signed-off-by: Dennis Francis <dennis.francis@collabora.com> Change-Id: I0dca0b9272935946df30f9684cc5b48feb02b03f
- we no longer use jQuery menu so no need to close it - do not need main level CSS for context menu Signed-off-by: Szymon Kłos <szymon.klos@collabora.com> Change-Id: If7fdc0af34af7d9eb72f7089437ee02f568a34d3
Signed-off-by: Szymon Kłos <szymon.klos@collabora.com> Change-Id: I43cea6c46a1bd30324c3dc77fa5a8434e01095a1
bfe7fb7 to
5b1b288
Compare
|
@eszkadev The removal of css in css/jsdialogs.css and/or css/device-mobile.css has caused cypress mobile failure in sheet operations. When running |
|
Interesting, I did grep and didn't found these classes. Must be concatenated somewhere. Thanks for fixing |
|
|
||
| const isUNO = key.startsWith('.uno:'); | ||
| if (Object.prototype.hasOwnProperty.call(data, '_uno')) key = data._uno; | ||
| let text = isUNO ? _UNO(key, 'spreadsheet', true): _(data._text); |
There was a problem hiding this comment.
_( ) requires string inside, you cannot do it this way,
Please do it in the JSON
| isHtmlName: true, | ||
| callback: (this._insertSheetBefore).bind(this) | ||
| callback: (this._insertSheetBefore).bind(this), | ||
| _text: 'Insert sheet before this', |
There was a problem hiding this comment.
we need _( ) here to get it working
| isHtmlName: true, | ||
| callback: (this._insertSheetAfter).bind(this) | ||
| callback: (this._insertSheetAfter).bind(this), | ||
| _text: 'Insert sheet after this', |
| callback: (this._moveSheetLeft).bind(this), | ||
| visible: areTabsMultiple | ||
| visible: areTabsMultiple, | ||
| _text: 'Move Sheet Left', |
| callback: (this._moveSheetRight).bind(this), | ||
| visible: areTabsMultiple | ||
| visible: areTabsMultiple, | ||
| _text: 'Move Sheet Right', |
| return !areTabsMultiple(); | ||
| } | ||
| }, | ||
| _text: 'Copy Sheet...', |


Summary
This is related to #13948
Checklist
make prettier-writeand formatted the code.make checkmake runand manually verified that everything looks okay