").text(field.name).appendTo($fg);
- // check node type, find relevant tags
- if ($node[0].nodeName == 'DIV') {
- $("#current-convert").attr("data-current-type", "div");
- } else if ($node[0].nodeName == 'EM') {
- $("#current-convert").attr("data-current-type", "span");
- }
- };
+ // if multiple?
+ $("
").appendTo($fg);
+
+ let match = field.uri.match(/({(.*)})?(.*)/);
+ let ns = match[2];
+ let tag = match[3];
+
+ let cont = $('
');
+ $fg.data('ns', ns);
+ $fg.data('tag', tag);
+ $fg.data('field', field);
+ cont.appendTo($fg);
+ self.displayMetaProperty($fg);
- PropertiesPerspective.prototype.addEditField = function(defn, value, elem) {
- let self = this;
- let $form = $("#properties-form", self.$pane);
+ $fg.appendTo( $("#properties-form", self.$pane));
+ });
+ }
+
+ // check node type, find relevant tags
+ if ($node[0].nodeName == 'DIV') {
+ $("#current-convert").attr("data-current-type", "div");
+ } else if ($node[0].nodeName == 'EM') {
+ $("#current-convert").attr("data-current-type", "span");
+ }
+ }
+
+ addMetaInput(cont, field, element) {
+ let self = this;
+
+ let ig = $('