Fixed browser icons path and size.

This commit is contained in:
Gunther Brunner
2014-12-05 17:31:27 +09:00
parent 3f02f87fc7
commit de7c367cb8
2 changed files with 7 additions and 1 deletions

View File

@@ -422,7 +422,7 @@ function DeviceBrowserCell(options) {
for (var i = 0, l = browser.apps.length; i < l; ++i) {
var app = browser.apps[i]
, img = span.childNodes[i] || span.appendChild(document.createElement('img'))
, src = '/static/app/browsers/icon/24x24/' + (app.type || '_default') + '.png'
, src = '/static/app/browsers/icon/36x36/' + (app.type || '_default') + '.png'
// Only change if necessary so that we don't trigger a download
if (img.getAttribute('src') !== src) {