Exemple #1
0
 items.forEach(function(item) {
   if (item.item === 'command') {
     canon.removeCommand(item);
   }
   else if (item.item === 'type') {
     types.removeType(item);
   }
   else if (item.item === 'converter') {
     converters.removeConverter(item);
   }
   else if (item.item === 'settings') {
     settings.removeSetting(item);
   }
   else if (item.item === 'field') {
     fields.removeField(item);
   }
   else {
     throw new Error('item property not found');
   }
 });
Exemple #2
0
exports.shutdown = function() {
  fields.removeField(JavascriptField);
};
Exemple #3
0
exports.shutdown = function() {
  fields.removeField(SelectionField);
  fields.removeField(SelectionTooltipField);
};