This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
meshviewer/lib/about.js

43 lines
1.6 KiB
JavaScript

define(function () {
'use strict';
return function () {
this.render = function render(d) {
d.innerHTML = '<h2>Über Meshviewer</h2>' +
'<p>Mit Doppelklick und Shift+Doppelklick kann man in der Karte ' +
'auch zoomen.</p>' +
'<h3>AGPL 3</h3>' +
'<p>Copyright (C) Milan Pässler</p>' +
'<p>Copyright (C) Nils Schneider</p>' +
'<p>This program is free software: you can redistribute it and/or ' +
'modify it under the terms of the GNU Affero General Public ' +
'License as published by the Free Software Foundation, either ' +
'version 3 of the License, or (at your option) any later version.</p>' +
'<p>This program 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 Affero General Public License for more details.</p>' +
'<p>You should have received a copy of the GNU Affero General ' +
'Public License along with this program. If not, see ' +
'<a href="https://www.gnu.org/licenses/">' +
'https://www.gnu.org/licenses/</a>.</p>' +
'<p>The source code is available at ' +
'<a href="https://github.com/ffrgb/meshviewer">' +
'https://github.com/ffrgb/meshviewer</a>.' +
'<p>Forked and based on ' +
'<a href="https://github.com/ffnord/meshviewer">' +
'https://github.com/ffnord/meshviewer</a> and ' +
'<a href="https://github.com/plumpudding/hopglass">' +
'https://github.com/plumpudding/hopglass</a>.</p>';
};
};
});