Fossil SCM
Added copyright and license comment to the top of the new skins/default/js.txt file.
Commit
972ae10b308f72d8a7551dbc828cb148f30af9f5651fc8db7360e409dd1a7c77
Parent
1d5eea6669af52b…
1 file changed
+19
+19
| --- skins/default/js.txt | ||
| +++ skins/default/js.txt | ||
| @@ -1,5 +1,24 @@ | ||
| 1 | +/* | |
| 2 | +** Copyright © 2018 Warren Young | |
| 3 | +** | |
| 4 | +** This program is free software; you can redistribute it and/or | |
| 5 | +** modify it under the terms of the Simplified BSD License (also | |
| 6 | +** known as the "2-Clause License" or "FreeBSD License".) | |
| 7 | +** | |
| 8 | +** This program is distributed in the hope that it will be useful, | |
| 9 | +** but without any warranty; without even the implied warranty of | |
| 10 | +** merchantability or fitness for a particular purpose. | |
| 11 | +** | |
| 12 | +** Contact: wyoung on the Fossil forum, https://fossil-scm.org/forum/ | |
| 13 | +** | |
| 14 | +******************************************************************************* | |
| 15 | +** | |
| 16 | +** This file contains the JS code specific to the Fossil default skin. | |
| 17 | +** Currently, the only thing this does is handle clicks on its hamburger | |
| 18 | +** menu button. | |
| 19 | +*/ | |
| 1 | 20 | (function() { |
| 2 | 21 | var panel = document.getElementById("hbdrop"); |
| 3 | 22 | if (!panel) return; // site admin might've nuked it |
| 4 | 23 | var panelBorder = panel.style.border; |
| 5 | 24 | var animate = panel.style.hasOwnProperty('transition'); |
| 6 | 25 |
| --- skins/default/js.txt | |
| +++ skins/default/js.txt | |
| @@ -1,5 +1,24 @@ | |
| 1 | (function() { |
| 2 | var panel = document.getElementById("hbdrop"); |
| 3 | if (!panel) return; // site admin might've nuked it |
| 4 | var panelBorder = panel.style.border; |
| 5 | var animate = panel.style.hasOwnProperty('transition'); |
| 6 |
| --- skins/default/js.txt | |
| +++ skins/default/js.txt | |
| @@ -1,5 +1,24 @@ | |
| 1 | /* |
| 2 | ** Copyright © 2018 Warren Young |
| 3 | ** |
| 4 | ** This program is free software; you can redistribute it and/or |
| 5 | ** modify it under the terms of the Simplified BSD License (also |
| 6 | ** known as the "2-Clause License" or "FreeBSD License".) |
| 7 | ** |
| 8 | ** This program is distributed in the hope that it will be useful, |
| 9 | ** but without any warranty; without even the implied warranty of |
| 10 | ** merchantability or fitness for a particular purpose. |
| 11 | ** |
| 12 | ** Contact: wyoung on the Fossil forum, https://fossil-scm.org/forum/ |
| 13 | ** |
| 14 | ******************************************************************************* |
| 15 | ** |
| 16 | ** This file contains the JS code specific to the Fossil default skin. |
| 17 | ** Currently, the only thing this does is handle clicks on its hamburger |
| 18 | ** menu button. |
| 19 | */ |
| 20 | (function() { |
| 21 | var panel = document.getElementById("hbdrop"); |
| 22 | if (!panel) return; // site admin might've nuked it |
| 23 | var panelBorder = panel.style.border; |
| 24 | var animate = panel.style.hasOwnProperty('transition'); |
| 25 |