diff options
author | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-29 00:33:59 +0000 |
---|---|---|
committer | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-29 00:33:59 +0000 |
commit | 18608c49395a6bda33a32ad6a286227a1eb76c2f (patch) | |
tree | e84729cf59378d956b502e3871f797df93a3e4eb /chrome/browser/resources | |
parent | c4a065c728d22c2a2d57fa6d6f675ef9f1ae73c3 (diff) | |
download | chromium_src-18608c49395a6bda33a32ad6a286227a1eb76c2f.zip chromium_src-18608c49395a6bda33a32ad6a286227a1eb76c2f.tar.gz chromium_src-18608c49395a6bda33a32ad6a286227a1eb76c2f.tar.bz2 |
chromeos: Fix DOMUI about:credits link.
The renderer doesn't let us link to about:credits, so make
the DOMUI settings page link to chrome://about/credits
instead (and initialize the about handler's data source when
the settings page is opened). Also open these links in new
tabs instead of in the current one.
BUG=chromium-os:6728
TEST=built for chrome os and linux and checked that credits links work in both cases
Review URL: http://codereview.chromium.org/5315006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70246 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/options/about_page.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/resources/options/about_page.html b/chrome/browser/resources/options/about_page.html index 9c753aa..a2490d7 100644 --- a/chrome/browser/resources/options/about_page.html +++ b/chrome/browser/resources/options/about_page.html @@ -67,10 +67,12 @@ <div> <!-- Odd formatting to avoid unwanted spaces between elements. --> <span i18n-content="license_content_0"> - </span><a i18n-values="href:license_link_0" + </span><a target="_blank" + i18n-values="href:license_link_0" i18n-content="license_link_content_0"> </a><span i18n-content="license_content_1"> - </span><a i18n-values="href:license_link_1" + </span><a target="_blank" + i18n-values="href:license_link_1" i18n-content="license_link_content_1"> </a><span i18n-content="license_content_2"> </span> |