[Minor] Inspector set model root for importing from text

This commit is contained in:
Robert von Burg 2019-10-18 12:04:41 +02:00
parent ed2a65c57d
commit 2639dcd208
2 changed files with 13 additions and 13 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-inspector",
"description": "Strolch WebComponent Inspector",
"version": "0.18.0",
"version": "0.18.1",
"authors": ["Robert von Burg"],
"keywords": [
"strolch",

View File

@ -255,7 +255,7 @@
Polymer({
is: 'strolch-wc-inspector',
is: "strolch-wc-inspector",
behaviors: [
StrolchInspectorBehavior
@ -273,25 +273,25 @@
value: function () {
return null;
},
observer: 'selectedRealmChanged'
observer: "selectedRealmChanged"
},
resourcesSummary: {
type: String,
value: function () {
return 'Resources';
return "Resources";
}
},
ordersSummary: {
type: String,
value: function () {
return 'Orders';
return "Orders";
}
},
activitiesSummary: {
type: String,
value: function () {
return 'Activities';
return "Activities";
}
},
@ -300,7 +300,7 @@
value: function () {
return null;
},
observer: 'selectedObjectTypeChanged'
observer: "selectedObjectTypeChanged"
},
resources: {
@ -323,15 +323,15 @@
},
uploadType: {
type: String,
value: 'text'
value: "text"
},
uploadEncoding: {
type: String,
value: 'utf-8'
value: "utf-8"
},
modelAsText: {
type: String,
value: ''
value: ""
},
propagateShowDialog: {
type: Boolean,
@ -443,12 +443,12 @@
},
onUploadTapped: function (event) {
this.modelAsText = '';
this.modelAsText = "<StrolchModel>\n\n\n</StrolchModel>";
this.$.uploadFile.files = [];
this.$.uploadDlg.open();
},
onCancelUploadTap: function (event) {
this.modelAsText = '';
this.modelAsText = "<StrolchModel>\n\n\n</StrolchModel>";
this.$.uploadDlg.close();
},
onUploadTextTap: function (event) {
@ -459,7 +459,7 @@
this.dlgTitle = 'Import failed';
this._handleAjaxResponse = function (data) {
this.modelAsText = '';
this.modelAsText = "<StrolchModel>\n\n\n</StrolchModel>";
this.$.uploadDlg.close();
this.dlgTitle = 'Import done';