Sampsa Lohi
Sampsa Lohi
I think the idea has been to support Markdown in the instructions section. Markdown can achieve this, but you would still have to host the images in a separate location....
@Rumastiker yes, Markdown is a simple text formatting syntax, used by GitHub for example. It was actually @christianlupus who was talking about Markdown and my reply was partly aimed to...
I have created a system like this for another Nextcloud app. I would sincerely suggest using a 10 point system (or five stars with half star increments). Having only five...
I created a pull request for this, so we can work out the details of this implementation.
I ran into this problem when switching to a Postres database (NC 19.0.4). Looking through the migrations, I noticed a couple of other potentially offending entries (judging by the error...
You can access the dragged pieces component and modify its styles like this: ```javascript // const board = the chessboard as Element board.shadowRoot.querySelector('#dragged-pieces').setAttribute('style', 'display:none') ``` But I agree with the...
Sort of. The height of the element holding the dragged pieces is one square's height. So I have a component placed below the chessboard with `position: relative` and I have...
Just FYI, now that I started thinking about this, I went into my project's node_modules folder and changed the lines in the lib/chessboard-element.js corresponding to https://github.com/justinfagnani/chessboard-element/blob/1bc7004ea98359cbca9a1039dfd6dc842e0d27e3/src/lib/chessboard-element.ts#L487-L495 to ```javascript ${this._renderDraggedPiece()} ```...