Fix typo in comment

Change-Id: I8faf1365d545952c475a8c852ec5707304b4a69e
This commit is contained in:
Aaron Boodman 2013-12-26 23:32:51 -08:00
parent 07a61c430d
commit 1a4a4d5145
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ camlistore.BlobItem.prototype.setThumbSize = function(w, h) {
var newThumb = this.getThumbSrc_().split('?')[0] + '?mh=' + rh +
'&tv=' + tv;
// It's important to only assing the new src if it has changed. Assigning
// It's important to only assign the new src if it has changed. Assigning
// a src causes layout and style recalc.
if (newThumb != this.thumb_.getAttribute('src')) {
this.thumb_.src = newThumb;