Project

General

Profile

Revision d8968a9a

IDd8968a9a9cce4fac093aac8f931cbe2881fc9a1a
Parent e353a4d4
Child 9ef30cc9

Added by Francois POIROTTE over 13 years ago

Suppression de virgules superlfues dans VigiBoard + templates (#).
Mise à jour du development.ini de VigiBoard (use_kerberos -> external_auth).

git-svn-id: https://vigilo-dev.si.c-s.fr/svn@4989 b22e2e97-25c9-44ff-b637-2e5ceca36478

View differences:

vigiboard/public/js/tree.js
2 2
 * VigiBoard, composant de Vigilo.
3 3
 * (c) CSSI 2009-2010 <contact@projet-vigilo.org>
4 4
 * Licence : GNU GPL v2 ou superieure
5
 * 
5
 *
6 6
 */
7 7

  
8 8
/*
......
21 21
        this.dlg = new Jx.Dialog({
22 22
            label: this.options.title,
23 23
            modal: true,
24
            content: container,
24
            content: container
25 25
        });
26 26

  
27 27
        var req = new Request.JSON({
......
43 43
            subfolder = new Jx.TreeFolder({
44 44
                label: data.name,
45 45
                data: data.idgroup,
46
                image: this.options.app_path+"images/map-list.png",
46
                image: this.options.app_path+"images/map-list.png"
47 47
            });
48 48
        }
49 49
        else {
50 50
            subfolder = new Jx.TreeItem({
51 51
                label: data.name,
52 52
                data: data.idgroup,
53
                image: this.options.app_path+"images/map.png",
53
                image: this.options.app_path+"images/map.png"
54 54
            });
55 55
        }
56 56

  
......
70 70
        this.dlg.open();
71 71
    }
72 72
});
73

  

Also available in: Unified diff