diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-05-14 14:08:28 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-05-21 16:04:18 +0200 |
commit | e6e68d4417b3b33cfb16753340460f617b847361 (patch) | |
tree | 9676bd7ecfc5dd92ece28e46086612d7811ed893 | |
parent | c14d18620f1164c8eed149b21b41066ff092d6ae (diff) |
Fix missing 2nd tab when repasting
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | data/js/uploader.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/js/uploader.js b/data/js/uploader.js index 0b3993eb0..0eed3334f 100644 --- a/data/js/uploader.js +++ b/data/js/uploader.js @@ -124,6 +124,7 @@ define(['jquery', 'underscore'], function ($, _) { var Uploader = { initialize: function () { PrivateFunctions.setupEvents(); + $(ui.textAreas).trigger("propertychange"); } }; |