Commit 4a7125a7 authored by michaeln@google.com's avatar michaeln@google.com

Fix a typo in the settings domUI javascript, manefest s/b manifest.

BUG=none
TEST=manual

Review URL: http://codereview.chromium.org/6323006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71830 0039d316-1c4b-4281-b951-d872f2087c98
parent cc2c85bf
...@@ -119,7 +119,7 @@ cr.define('options', function() { ...@@ -119,7 +119,7 @@ cr.define('options', function() {
* Sets app cache info to display. * Sets app cache info to display.
*/ */
setAppCacheInfo: function(appCache) { setAppCacheInfo: function(appCache) {
$('appCacheManifest').textContent = appCache.manefest; $('appCacheManifest').textContent = appCache.manifest;
$('appCacheSize').textContent = appCache.size; $('appCacheSize').textContent = appCache.size;
$('appCacheCreated').textContent = appCache.created; $('appCacheCreated').textContent = appCache.created;
$('appCacheLastAccessed').textContent = appCache.accessed; $('appCacheLastAccessed').textContent = appCache.accessed;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment