diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-01 17:57:45 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-01 17:57:45 +0000 |
commit | 1388bfa95161eee559746d14a69a3e5fb6248f58 (patch) | |
tree | f6b34cee0dee2db9c4bf3cf21a9b06a4919f78b3 /chrome/browser/resources | |
parent | 3625c4b59f2dba9fe3e1ec1514b83f54a1c38818 (diff) | |
download | chromium_src-1388bfa95161eee559746d14a69a3e5fb6248f58.zip chromium_src-1388bfa95161eee559746d14a69a3e5fb6248f58.tar.gz chromium_src-1388bfa95161eee559746d14a69a3e5fb6248f58.tar.bz2 |
Apps should launch in normal tabs by default. Also, reorder
options in context menu so that normal tab (which is the
default) is first.
BUG=57202
TEST=Install an app and launch it. Should open in normal
tab. Right-click menu should show show normal tab first and
checked. Checking 'pinned tab' and then launching should
cause the app to launch in a pinned tab. Selection should be
remembered across restart.
Review URL: http://codereview.chromium.org/3604002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61197 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/new_new_tab.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/new_new_tab.html b/chrome/browser/resources/new_new_tab.html index 7290e32..369cec0 100644 --- a/chrome/browser/resources/new_new_tab.html +++ b/chrome/browser/resources/new_new_tab.html @@ -186,8 +186,8 @@ if ('mode' in hashParams) { <menu id="app-context-menu"> <button class="default" command="#apps-launch-command"></button> <hr> - <button command="#apps-launch-type-pinned" launch-type="0"></button> <button command="#apps-launch-type-regular" launch-type="1"></button> + <button command="#apps-launch-type-pinned" launch-type="0"></button> <button command="#apps-launch-type-fullscreen" launch-type="2"></button> <hr> <button command="#apps-options-command"></button> |