diff --git a/public/css/style.less b/public/css/style.less index f56378d34c..ebe23677f2 100644 --- a/public/css/style.less +++ b/public/css/style.less @@ -504,7 +504,6 @@ body .navbar .nodebb-inline-block { .post-window { position: fixed; bottom: 45px; - height: 450px; display: none; > div { @@ -542,6 +541,29 @@ body .navbar .nodebb-inline-block { color: white; height: 330px; } + + #imagedrop { + background: rgba(64, 64, 64, 0.95); + padding: 0.5em; + display: block; + width: 90%; + min-height:25px; + margin: 1em auto; + resize: none; + color:white; + font-size:20px; + div { + margin-right:10px; + } + span { + line-height:20px; + float:left; + } + button { + padding-left:5px; + } + } + } } diff --git a/public/css/topic.less b/public/css/topic.less index a92a5e221a..33cd5e24ff 100644 --- a/public/css/topic.less +++ b/public/css/topic.less @@ -50,6 +50,10 @@ padding: 2px 5px 0 5px; word-wrap: break-word; } + + .post-images{ + padding: 2px 5px 0 5px; + } .post-block { .post-buttons { diff --git a/public/src/modules/composer.js b/public/src/modules/composer.js index cc0ae8fbd0..9137ec6bd3 100644 --- a/public/src/modules/composer.js +++ b/public/src/modules/composer.js @@ -7,10 +7,88 @@ define(['taskbar'], function(taskbar) { postContainer: undefined, }; + function loadFile(file) { + var reader = new FileReader(); + var dropDiv = $('#imagedrop'); + var uuid = dropDiv.parents('[data-uuid]').attr('data-uuid'); + var posts = composer.posts[uuid]; + + $(reader).on('loadend', function(e) { + var bin = this.result; + bin = bin.split(',')[1]; + + var img = { + name: file.name, + data: bin + }; + + posts.images.push(img); + + var imageLabel = $('