Description
When using klipse_plugin.min.js instead of klipse_plugin.js, the console shows the following two errors with Firefox (62.0 and 60.1.0esr on GNU/Linux):
- TypeError: x is not a function[Learn More] klipse_plugin.min.js:1799:43
- TypeError: a.split is not a function[Learn More] klipse_plugin.min.js:306:123
Minimal example:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel= "stylesheet" type= "text/css" href="https://storage.googleapis.com/app.klipse.tech/css/codemirror.css">
<script>
window.klipse_settings = { selector_eval_js: ".klipse" };
</script>
</head>
<body>
<pre><code class="klipse" >
var x = "Hello World!";
x
</code></pre>
<!-- <script src="https://storage.googleapis.com/app.klipse.tech/plugin/js/klipse_plugin.js"></script> -->
<script src="https://storage.googleapis.com/app.klipse.tech/plugin_prod/js/klipse_plugin.min.js"></script>
</body>
</html>
The output "Hello World!" appears, but further edits do not have effects.