Files
praxis-creutzburg-web/admin/trumbowyg/docs/demos/js/runExampleCode.js
T
2026-03-20 17:13:38 +01:00

13 lines
356 B
JavaScript

(function($) {
'use strict';
$('.js-code-to-eval').each(function() {
eval($(this).text()); // jshint ignore:line
$(this).text(
$(this).text()
.replace(/'Client-ID\s[a-z0-9]+'/, '\'Client-ID xxxxxxxxxxxx\'')
.replace(/apiKey:\s+'.*'/, 'apiKey: \'xxxxxxxxxxxx\'')
);
});
})(jQuery);