Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #13229 from bcbcarl/bug860424
Browse files Browse the repository at this point in the history
Bug 860424 - Show first 8 characters only, r=evelyn
  • Loading branch information
evelynhung committed Nov 7, 2013
2 parents 591d22e + 31df6dc commit 164a332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/settings/js/about_more_info.js
Expand Up @@ -40,7 +40,7 @@ var AboutMoreInfo = {

var d = new Date(parseInt(data[1] + '000', 10));
dispDate.textContent = dateToUTC(d);
dispHash.textContent = data[0];
dispHash.textContent = data[0].substr(0, 8);
} else {
console.error('Failed to fetch gaia commit: ', req.statusText);
}
Expand Down

0 comments on commit 164a332

Please sign in to comment.