mirror of
https://github.com/xevidos/codiad.git
synced 2025-03-15 21:14:24 +01:00
15 lines
No EOL
322 B
JavaScript
15 lines
No EOL
322 B
JavaScript
( function( global, $ ) {
|
|
|
|
// Define core
|
|
let codiad = global.codiad,
|
|
scripts = document.getElementsByTagName( 'script' ),
|
|
path = scripts[scripts.length-1].src.split( '?' )[0],
|
|
curpath = path.split( '/' ).slice( 0, -1 ).join( '/' ) + '/';
|
|
|
|
codiad.loading = {
|
|
|
|
init: function() {},
|
|
|
|
|
|
};
|
|
})( this, jQuery ); |