Skip to content
Snippets Groups Projects
Commit fcd91eb1 authored by Aaron Ponti's avatar Aaron Ponti
Browse files

Fix some layout glitches with file thumbnails.

parent 20e0ec1f
No related branches found
No related tags found
No related merge requests found
...@@ -174,6 +174,7 @@ $.extend(MicroscopyTechnology.prototype, ELNLIMSPlugin.prototype, { ...@@ -174,6 +174,7 @@ $.extend(MicroscopyTechnology.prototype, ELNLIMSPlugin.prototype, {
var newThumbCol = $("<div />", var newThumbCol = $("<div />",
{ {
class: "col-md-4", class: "col-md-4",
"text-align": "center",
id: sample.code id: sample.code
}); });
...@@ -196,6 +197,9 @@ $.extend(MicroscopyTechnology.prototype, ELNLIMSPlugin.prototype, { ...@@ -196,6 +197,9 @@ $.extend(MicroscopyTechnology.prototype, ELNLIMSPlugin.prototype, {
var thumbnailImage = $("<img />", var thumbnailImage = $("<img />",
{ {
src: "./img/wait.png", src: "./img/wait.png",
class: "img-responsive",
display: "inline",
"text-align": "center",
id: "image_" + sample.code, id: "image_" + sample.code,
title: name title: name
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment