mirror of
https://github.com/viliusle/miniPaint.git
synced 2026-02-06 13:36:45 +00:00
removed debug info
This commit is contained in:
parent
791be5090b
commit
b0026f644b
@ -279,7 +279,7 @@
|
||||
<li><a onclick="call_menu(HELP, 'help_translate', 'de');" href="#">German</a>
|
||||
<li><a onclick="call_menu(HELP, 'help_translate', 'it');" href="#">Italiano</a>
|
||||
<li><a onclick="call_menu(HELP, 'help_translate', 'ja');" href="#">Japanese</a>
|
||||
<li><a onclick="call_menu(HELP, 'help_translate', 'ko');" href="#">Korean</a>
|
||||
<li><a onclick="call_menu(HELP, 'help_translate', 'ko');" href="#">Korean</a>
|
||||
<li><a onclick="call_menu(HELP, 'help_translate', 'lt');" href="#">Lietuvių</a>
|
||||
<li><a onclick="call_menu(HELP, 'help_translate', 'pt');" href="#">Portuguese</a>
|
||||
<li><a onclick="call_menu(HELP, 'help_translate', 'ru');" href="#">Russian</a>
|
||||
|
||||
@ -47,7 +47,7 @@ function FILE_CLASS() {
|
||||
save_resolution = 'No';
|
||||
else{
|
||||
save_resolution = 'Yes';
|
||||
var last_resolution = JSON.parse(save_resolution_cookie); console.log(last_resolution, 'load');
|
||||
var last_resolution = JSON.parse(save_resolution_cookie);
|
||||
w = parseInt(last_resolution[0]);
|
||||
h = parseInt(last_resolution[1]);
|
||||
}
|
||||
@ -66,8 +66,8 @@ function FILE_CLASS() {
|
||||
var save_resolution = response.save_resolution;
|
||||
|
||||
if(resolution != 'Custom'){
|
||||
var dim = resolution.split(" "); console.log(dim);
|
||||
dim = dim[0].split("x"); console.log(dim);
|
||||
var dim = resolution.split(" ");
|
||||
dim = dim[0].split("x");
|
||||
width = dim[0];
|
||||
height = dim[1];
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user