lint: skins

pull/4832/head^2
John McLear 2021-02-17 14:49:34 +00:00
parent 4ca2d7ea3a
commit c64b1b8ead
6 changed files with 24 additions and 12 deletions

View File

@ -1,5 +1,7 @@
function customStart() {
'use strict';
window.customStart = () => {
// define your javascript here
// jquery is available - except index.js
// you can load extra scripts with $.getScript http://api.jquery.com/jQuery.getScript/
}
};

View File

@ -1,5 +1,7 @@
function customStart() {
'use strict';
window.customStart = () => {
$('#pad_title').show();
$('.buttonicon').mousedown(function () { $(this).parent().addClass('pressed'); });
$('.buttonicon').mouseup(function () { $(this).parent().removeClass('pressed'); });
}
};

View File

@ -1,2 +1,4 @@
function customStart() {
}
'use strict';
window.customStart = () => {
};

View File

@ -1,5 +1,7 @@
function customStart() {
'use strict';
window.customStart = () => {
// define your javascript here
// jquery is available - except index.js
// you can load extra scripts with $.getScript http://api.jquery.com/jQuery.getScript/
}
};

View File

@ -1,5 +1,7 @@
function customStart() {
'use strict';
window.customStart = () => {
// define your javascript here
// jquery is available - except index.js
// you can load extra scripts with $.getScript http://api.jquery.com/jQuery.getScript/
}
};

View File

@ -1,5 +1,7 @@
function customStart() {
'use strict';
window.customStart = () => {
// define your javascript here
// jquery is available - except index.js
// you can load extra scripts with $.getScript http://api.jquery.com/jQuery.getScript/
}
};