geek-merlin
geek-merlin
I noticed that drawio has success in this so groked the [code that does the job](https://github.com/pawelrojek/nextcloud-drawio/blob/master/drawio/js/main.js#L52). Maybe this helps. ``` $.each(OCA.DrawIO.Mimes, function (ext, attr) { fileList.fileActions.registerAction({ name: "drawioOpen", displayName: t(OCA.DrawIO.AppName,...
OTOH the markdown editor seems to [kick itself in as a preview handler](https://github.com/icewind1991/files_markdown/blob/master/js/editor.ts): ``` $(document).ready(function () { if (OCA.Files_Texteditor && OCA.Files_Texteditor.registerPreviewPlugin) { OCA.Files_Texteditor.registerPreviewPlugin('text/markdown', previewPlugin); } }); ```
We are having an ugly bug here, that __maybe__ is related: [Wrong language field labes, (only) after drush cr [#3221375] | Drupal.org](https://www.drupal.org/project/drupal/issues/3221375) Unfortunately, @zaporylie's pre-command hook component linked above does...
This german howto adds packages matchbox-keyboard and matchbox-window-manager. https://www.brumm.family/2018/07/11/bildschirmtastatur-fuer-den-musikplayer-hifiberry/
I can confirm this is still an issue with current volumio release: **Only** on touchscreen with german language the menuboxes open to top and are unusable. Both in grid and...
> v2.692 Yes that 's what i see under "System".
> One observation that might help: It seems to be related with the number of entries in the list/grid. > Case 1; More entries than vertical space and the scrollbar...
Different but related: #61,
Memo: https://github.com/geeks4change/varexporter/tree/code-exporter-on-040 ``` "extra": { "patches": { "brick/varexporter": { "Allow literal code https://github.com/brick/varexporter/pull/32": "https://github.com/geeks4change/varexporter/commit/999cd7f918e2445460f41bed054e96d2b2d1c5dd.diff" } } } ```
I have a similar use case, writing Drupal settings, where i want arbitrary expressions referencing vars like `$app_root . '/../private'`. I don't like the habit of magic strings like '%env'...