Refactor getThumbHref return object.

This commit is contained in:
Lars Jung 2015-05-03 21:05:04 +02:00
parent 31fe4d1591
commit 69cc1bd281
3 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ modulejs.define('ext/preview-img', ['_', '$', 'core/event', 'core/server', 'core
height: 0
}, function (json) {
callback(json && json.absHref ? json.absHref : null);
callback(json && json.href ? json.href : null);
});
}