laravelEcomm/public/Dashboard/js/ace.js
2024-07-12 12:51:02 +05:45

7 lines
238 B
JavaScript

(function($) {
'use strict';
var editor = ace.edit("aceExample");
editor.setTheme("ace/theme/chaos");
editor.getSession().setMode("ace/mode/javascript");
document.getElementById('aceExample').style.fontSize = '1rem';
})(jQuery);