Changed the new messages separator location in the markup to be at the same level as the date seperator

Этот коммит содержится в:
Reed Garmsen
2015-06-18 15:34:23 -07:00
родитель a7ed61ef90
Коммит 65318de9ae
2 изменённых файлов: 6 добавлений и 8 удалений

Просмотреть файл

@@ -716,7 +716,7 @@ Image.prototype.load = function(url, progressCallback) {
m = h.match( /^Content-Type\:\s*(.*?)$/mi ),
mimeType = m[ 1 ] || 'image/png';
var blob = new Blob([this.response], { type: mimeType });
var blob = new Blob([this.response.buffer], { type: mimeType });
thisImg.src = window.URL.createObjectURL(blob);
};
xmlHTTP.onprogress = function(e) {