Disable wordWrapText

This commit is contained in:
Hillel Coren 2016-09-18 14:58:44 +03:00
parent 36ce423513
commit 4530abf495

View File

@ -750,9 +750,9 @@ function ItemModel(data) {
return this.notes(); return this.notes();
}, },
write: function(value) { write: function(value) {
value = wordWrapText(value, 235); //value = wordWrapText(value, 235);
self.notes(value); self.notes(value);
onItemChange(); //onItemChange();
}, },
owner: this owner: this
}); });