diff options
author | kochi@chromium.org <kochi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-06 06:17:14 +0000 |
---|---|---|
committer | kochi@chromium.org <kochi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-06 06:17:14 +0000 |
commit | 4272682e0051d54dfa22602b4c69e661da9a6cf9 (patch) | |
tree | a36be7c42856bdeefd9ffb9da510aad4e61cfb72 /chrome/browser/resources/ntp/apps.js | |
parent | 8a7ef121c533b8f26199ce187982b327015b29e7 (diff) | |
download | chromium_src-4272682e0051d54dfa22602b4c69e661da9a6cf9.zip chromium_src-4272682e0051d54dfa22602b4c69e661da9a6cf9.tar.gz chromium_src-4272682e0051d54dfa22602b4c69e661da9a6cf9.tar.bz2 |
This is follow-up CL for
http://codereview.chromium.org/6057002/
BUG=chromium-os:10364
TEST=manually check if pulldown menu of apps on newtab page doesn't have 'create shortcut'.
Review URL: http://codereview.chromium.org/6060003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70597 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/ntp/apps.js')
-rw-r--r-- | chrome/browser/resources/ntp/apps.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/ntp/apps.js b/chrome/browser/resources/ntp/apps.js index 32b8a4a..b474f199 100644 --- a/chrome/browser/resources/ntp/apps.js +++ b/chrome/browser/resources/ntp/apps.js @@ -36,7 +36,7 @@ function getAppsCallback(data) { // The "Create App Shortcut" menu option. $('apps-create-shortcut-command-menu-item').style.display = $('apps-create-shortcut-command-separator').style.display = - (data.disableCreateAppShortcut ? 'none' : 'inline'); + (data.disableCreateAppShortcut ? 'none' : ''); appsMiniview.textContent = ''; appsSectionContent.textContent = ''; |