Edwin Siebel
Edwin Siebel
This is a annoying bug. We also have the same issue. I've traced it down to the file `js/clone.js` and specific line 245: ``` tinymce.execCommand( 'mceAddEditor', true, this.id ); ```...
Adding `editor.execCommand('mceSetContent', false, this.id);` above `tinymce.execCommand( 'mceAddEditor', true, this.id );` (line 245) does seem to fix the problem of the content being swapped. The tabs are still scambled (see my...
@viet34tqc , never mind my reaction. The `editor.execCommand('mceSetContent', false, this.id);` returns an error, so that's why `tinymce.execCommand( 'mceAddEditor', true, this.id );` was not executed, and thus that 'fixes' what I...
Any research or improvements on this post?
Great, if you need any help, let me know
You could rewrite it a bit: ```php if (false === ($app = require_once THEMOSIS_ROOT.'/bootstrap/app.php')) { $app = app(); } ``` Though, still feels a bit dirty. Maybe the /bootstrap/app.php should...
Thinking of this issue, why would the `$app` return false? `$app = require_once THEMOSIS_ROOT.'/bootstrap/app.php')` would never return false; look into bootstrap/app.php. `$app` has no possibility to become false. It would...
The original helper function from Laravel does not use the `rootUrl()` function: https://github.com/laravel/framework/blob/8.x/src/Illuminate/Foundation/helpers.php#L697 That might be the issue.
Is to be used instead of https://github.com/ongr-io/ElasticsearchDSL/pull/306