Commit 5877224e authored by Tristan Cavelier's avatar Tristan Cavelier

fixing textarea content value bug

parent d47c8110
...@@ -174,7 +174,7 @@ var newConflictJio = function () { ...@@ -174,7 +174,7 @@ var newConflictJio = function () {
my_jio = jIO.newJio(spec); my_jio = jIO.newJio(spec);
}; };
var newCustomJio = function () { var newCustomJio = function () {
var spec = JSON.parse ($('#customstorage').text()); var spec = JSON.parse ($('#customstorage').attr('value'));
if (my_jio) { log('closing older jio'); my_jio.close(); } if (my_jio) { log('closing older jio'); my_jio.close(); }
log ('custom storage description object: '+JSON.stringify (spec)); log ('custom storage description object: '+JSON.stringify (spec));
my_jio = jIO.newJio(spec); my_jio = jIO.newJio(spec);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment