Files
SCM-Manager/scm-webapp/src/main/webapp/resources/js/global.js

13 lines
306 B
JavaScript
Raw Normal View History

2010-09-04 16:36:25 +02:00
/*
* 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
});