mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 01:15:44 +01:00
13 lines
306 B
JavaScript
13 lines
306 B
JavaScript
|
|
/*
|
||
|
|
* To change this template, choose Tools | Templates
|
||
|
|
* and open the template in the editor.
|
||
|
|
*/
|
||
|
|
|
||
|
|
var repositoryTypes = [ ['Mercurial', 'hg'], ['Subversion','svn'], ['Git','git'] ];
|
||
|
|
|
||
|
|
var repositoryTypeStore = new Ext.data.ArrayStore({
|
||
|
|
id: 1,
|
||
|
|
fields: [ 'name', 'type' ],
|
||
|
|
data: repositoryTypes
|
||
|
|
});
|