UNPKG
sharding-stats
Version:
latest (2.4.0)
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
0.5.1
0.5.0
0.4.4
A cool Dashboard & Manager for showing Live Stats and managing your Discord Bot/Shards
sharding-stats
/
Frontend
/
assets
/
js
/
ace.js
7 lines
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
(
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);