~openteachermaintainers/openteacher/3.x

« back to all changes in this revision

Viewing changes to node_modules/ot-mobile/src/copyrightInfoDialog.js

  • Committer: Marten de Vries
  • Date: 2017-06-28 18:05:48 UTC
  • Revision ID: git-v1:b4c406307aa345c58b9904b76580f15c5bff2a4e
Move JS into npm modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
        Copyright 2012-2013, 2017, Marten de Vries
 
3
        Copyright 2012, Milan Boers
 
4
 
 
5
        This file is part of OpenTeacher.
 
6
 
 
7
        OpenTeacher is free software: you can redistribute it and/or modify
 
8
        it under the terms of the GNU General Public License as published by
 
9
        the Free Software Foundation, either version 3 of the License, or
 
10
        (at your option) any later version.
 
11
 
 
12
        OpenTeacher is distributed in the hope that it will be useful,
 
13
        but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
        GNU General Public License for more details.
 
16
 
 
17
        You should have received a copy of the GNU General Public License
 
18
        along with OpenTeacher.  If not, see <http://www.gnu.org/licenses/>.
 
19
*/
 
20
 
 
21
/* global $: false */
 
22
 
 
23
exports.retranslate = function (_) {
 
24
        "use strict";
 
25
 
 
26
        $("#copyright-info-header").text(_("Copyright info"));
 
27
};
 
28
 
 
29
exports.setupUi = function () {
 
30
        "use strict";
 
31
 
 
32
        $("#copyright-info-text")
 
33
                .load("COPYING.txt")
 
34
                .css("overflow", "auto");
 
35
};