Statistics
| Branch: | Revision:

blinker / firefox.plugin / data / scripts / choices / checkbox.js @ 76dd22bd

History | View | Annotate | Download (1.874 KB)

1 76dd22bd KevinTaron
/*
2
 * Copyright 2015 Thies Pfeiffer and Dimitri Heil and Kevin Taron
3
 * Blinker is distributed under the terms of the GNU General Public License
4
 * 
5
 * This file is part of Blinker.
6
 * 
7
 * Blinker 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
 * Blinker 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 Blinker. If not, see <http://www.gnu.org/licenses/>.
19
 */
20
21
var gazeUncheck = '<div id="choicebox-uncheck" data-gaze="true"' +
22
                                'data-gaze-type="action" data-gaze-model="dwell"' + 
23
                                'data-gaze-function="checkTheBox(false)" data-gaze-target=".openedElement"><p>Uncheck</p></div>';
24
25
var gazeCheck = '<div id="choicebox-check" data-gaze="true"' +
26
                                'data-gaze-type="action" data-gaze-model="dwell"' + 
27
                                'data-gaze-function="checkTheBox(true)" data-gaze-target=".openedElement"><p>Check</p></div>';
28
29
30
function getItemsForCheckbox(element) {
31
32
        var gazeCancel = '<div class="Cancel" data-gaze="true" data-gaze-type="action" data-gaze-model="dwell" data-gaze-function="closePieMenu()"><p>Cancel</p></div>';
33
        var gazeOk = '<div class="Ok" data-gaze="true" data-gaze-type="action" data-gaze-model="dwell" data-gaze-target=".openedElement" data-gaze-function-after="closePieMenu()"><p>Ok</p></div>';
34
35
        var myarray = []
36
        myarray.push(gazeUncheck);
37
        myarray.push(gazeCheck);
38
39
        return myarray;
40
}
41
42
43
function checkTheBox(checked) {
44
        $('.openedElement input[type=checkbox]').prop('checked', checked);
45
        closeAll();
46
}