I have change/update the actions from the Storage-Plugin from erenertugrul: DeleteField, DeleteList and DeleteTable. Currently, you can't delete something in the dictionary. When you delete something, it look like this:
before (json):
{"test","ok","next":"yo"}
after delete "test" (json):
{"test":null,"next":"yo"}
But after my patch, the delete works:
{"next":"yo"}
I have change the code from this..
DeleteField(table, list, field)
{
if (isset(this.storage
) && isset(this.storage[list]) && isset(this.storage
{
this.storage
this.tableAttr
}
}
... to this:
DeleteField(table, list, field)
{
if (isset(this.storage
) && isset(this.storage[list]) && isset(this.storage
{
this.storage
delete this.storage
this.tableAttr
}
}
Here my download (fixed plugin):
https://drive.google.com/open?id=1zaxeOSW0flliBHQmogxkKvV41UJCx8lJ
EDIT: Fixed bug / crash at start ( v 1.0.0.1 )