Added GPL headers where needed, verified it and added a 512x512 icon too
This commit is contained in:
parent
53b14ec674
commit
c6c6cb0a6a
4 changed files with 48 additions and 1 deletions
BIN
img/icons/icon512x512.png
Normal file
BIN
img/icons/icon512x512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 93 KiB |
15
index.html
15
index.html
|
@ -1,4 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<!-- This file is part of ToDo List.
|
||||
|
||||
ToDo List is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ToDo List is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with ToDo List. If not, see http://www.gnu.org/licenses/.
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
|
16
js/app.js
16
js/app.js
|
@ -1,3 +1,19 @@
|
|||
/* This file is part of ToDo List.
|
||||
|
||||
ToDo List is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ToDo List is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with ToDo List. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
// DOMContentLoaded is fired once the document has been loaded and parsed,
|
||||
// but without waiting for other external resources to load (css/images/etc)
|
||||
// That makes the app more responsive and perceived as faster.
|
||||
|
|
18
js/init.js
18
js/init.js
|
@ -1,4 +1,20 @@
|
|||
$.afui.autoLaunch = false; //By default, it is set to true and you're app will run right away. We set it to false to show a splashscreen
|
||||
/* This file is part of ToDo List.
|
||||
|
||||
ToDo List is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
ToDo List is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with ToDo List. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
$.afui.autoLaunch = false; //By default, it is set to true and you're app will run right away. We set it to false to show a splashscreen
|
||||
/* This function runs when the content is loaded.*/
|
||||
$(document).ready(function(){
|
||||
setTimeout(function(){
|
||||
|
|
Loading…
Reference in a new issue