mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
Started logs loading management
This commit is contained in:
14
js/_logs.js
Normal file
14
js/_logs.js
Normal file
@ -0,0 +1,14 @@
|
||||
var rawFile = new XMLHttpRequest();
|
||||
rawFile.open("GET", '/pixel-editor/latestLog.html', false);
|
||||
rawFile.onreadystatechange = function ()
|
||||
{
|
||||
if(rawFile.readyState === 4)
|
||||
{
|
||||
if(rawFile.status === 200 || rawFile.status == 0)
|
||||
{
|
||||
var allText = rawFile.responseText;
|
||||
document.getElementById("latest-update").innerHTML = allText;
|
||||
}
|
||||
}
|
||||
}
|
||||
rawFile.send(null);
|
@ -54,6 +54,7 @@
|
||||
//=include _colorPicker.js
|
||||
//=include _paletteBlock.js
|
||||
//=include _splashPage.js
|
||||
//=include _logs.js
|
||||
|
||||
/**load file**/
|
||||
//=include _loadImage.js
|
||||
|
Reference in New Issue
Block a user