ericabouaf / wireit

A javascript wiring library to create web wirable interfaces for dataflow applications, visual programming languages or graphical modeling.
http://neyric.github.io/wireit/docs/
Other
520 stars 90 forks source link

WireingEditor SQL table disorder issue #64

Closed mckelvin closed 12 years ago

mckelvin commented 12 years ago

@ 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 },{

ericabouaf commented 12 years ago

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

mckelvin commented 12 years ago

it seems that the problem still exists in the version?