8.4.2 Error: Permission denied to access property "nodeType"

Permalink
I notice I always get a jquery error if I have a text editor and a number inputs on the same page and click on any part of the number input or change its value:

Error: Permission denied to access property "nodeType"

Looks like there's a conflict between the two. Has anyone else noticed that?

Try this:
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$editor = $app->make('editor');
?>
<div class="form-group">
    <?php 
    echo $form->label('some_text', t('Text'));
    echo $editor->outputBlockEditModeEditor('some_text', '');
    ?>
</div>
<div class="form-group">
    <?php
    echo $form->label('some_number', t('Number'));
    echo $form->number('some_number', $some_number ? $some_number : 0);
    ?>

linuxoid
 
linuxoid replied on at Permalink Reply
linuxoid
BTW, that was in Firefox. I've checked in Chrome and that error does not occur!
linuxoid replied on at Permalink Reply
linuxoid
Any idea why this happens or what causes this?