ericabouaf / wireit

A javascript wiring library to create web wirable interfaces for dataflow applications, visual programming languages or graphical modeling.

Home Page:http://neyric.github.io/wireit/docs/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WireingEditor SQL table disorder issue

mckelvin opened this issue · comments

@ js/WiringEditor.js L:193
it writes:
this.tempSavedWiring = {name: value.name, working: JSON.stringify(value.working), language: this.options.languageName };
it will lead to SQL table disorder ( tested under XAMPP for Linux 1.7.4...),I think it needs to be in alphabetical order:
this.tempSavedWiring = {language: this.options.languageName, name: value.name, working: JSON.stringify(value.working)};
as is mentioned @ backend/php/WiringEditor.php and it do works.

the problem also exists @ js/WiringEditor.js L:26x
this.adapter.deleteWiring({language: this.options.languageName , name: value.name },{

thanks. But I won't maintain this code anymore...
I'm working on the yui3 new version : https://github.com/neyric/wireit/tree/yui3

it seems that the problem still exists in the version?