1
0
Fork 0

frontend removed cap contraint

This commit is contained in:
hkernbach 2016-05-10 14:58:37 +02:00
parent b3e418aff7
commit 95f42778d0
1 changed files with 1 additions and 10 deletions

View File

@ -528,7 +528,7 @@
//index functions
resetIndexForms: function () {
$('#indexHeader input').val('').prop("checked", false);
$('#newIndexType').val('Cap').prop('selected',true);
$('#newIndexType').val('Geo').prop('selected',true);
this.selectIndexType();
},
@ -542,15 +542,6 @@
var sparse;
switch (indexType) {
case 'Cap':
var size = parseInt($('#newCapSize').val(), 10) || 0;
var byteSize = parseInt($('#newCapByteSize').val(), 10) || 0;
postParameter = {
type: 'cap',
size: size,
byteSize: byteSize
};
break;
case 'Geo':
//HANDLE ARRAY building
fields = $('#newGeoFields').val();