nonce String

When strict CSP is enabled a nonce can be provided for the inline styles. The passed value would be used as the nonce attribute for the inline styles in the content area iframe, the placeholder inline style and the link tags loading external stylesheets in the content area.

Example

<textarea id="editor"></textarea>

<script>
    $(document).ready(function() {
        $("#editor").kendoEditor({
            nonce: "kendoNonce"
        });
    });
</script>
In this article