Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // require: cr/ui/print_preview_cloud.js | 5 // require: cr/ui/print_preview_cloud.js |
| 6 | 6 |
| 7 var localStrings = new LocalStrings(); | 7 var localStrings = new LocalStrings(); |
| 8 | 8 |
| 9 // If useCloudPrint is true we attempt to connect to cloud print | 9 // If useCloudPrint is true we attempt to connect to cloud print |
| 10 // and populate the list of printers with cloud print printers. | 10 // and populate the list of printers with cloud print printers. |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 133 var els = $('sidebar').querySelectorAll('input, button, select'); | 133 var els = $('sidebar').querySelectorAll('input, button, select'); |
| 134 for (var i = 0; i < els.length; i++) | 134 for (var i = 0; i < els.length; i++) |
| 135 els[i].disabled = true; | 135 els[i].disabled = true; |
| 136 } | 136 } |
| 137 | 137 |
| 138 /** | 138 /** |
| 139 * Disables the controls in the sidebar, shows the throbber and instructs the | 139 * Disables the controls in the sidebar, shows the throbber and instructs the |
| 140 * backend to open the native print dialog. | 140 * backend to open the native print dialog. |
| 141 */ | 141 */ |
| 142 function onSystemDialogLinkClicked() { | 142 function onSystemDialogLinkClicked() { |
| 143 if (showingSystemDialog) | |
|
Lei Zhang
2011/08/25 17:29:00
Do you want to do the same below in launchNativePr
kmadhusu
2011/08/25 18:28:59
Yes.
| |
| 144 return; | |
| 143 showingSystemDialog = true; | 145 showingSystemDialog = true; |
| 144 disableInputElementsInSidebar(); | 146 disableInputElementsInSidebar(); |
| 145 $('system-dialog-throbber').classList.remove('hidden'); | 147 $('system-dialog-throbber').classList.remove('hidden'); |
| 146 chrome.send('showSystemDialog'); | 148 chrome.send('showSystemDialog'); |
| 147 } | 149 } |
| 148 | 150 |
| 149 /** | 151 /** |
| 150 * Similar to onSystemDialogLinkClicked(), but specific to the | 152 * Similar to onSystemDialogLinkClicked(), but specific to the |
| 151 * 'Launch native print dialog' UI. | 153 * 'Launch native print dialog' UI. |
| 152 */ | 154 */ |
| (...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 980 <include src="print_preview_animations.js"/> | 982 <include src="print_preview_animations.js"/> |
| 981 <include src="print_preview_cloud.js"/> | 983 <include src="print_preview_cloud.js"/> |
| 982 <include src="print_preview_utils.js"/> | 984 <include src="print_preview_utils.js"/> |
| 983 <include src="print_header.js"/> | 985 <include src="print_header.js"/> |
| 984 <include src="page_settings.js"/> | 986 <include src="page_settings.js"/> |
| 985 <include src="copies_settings.js"/> | 987 <include src="copies_settings.js"/> |
| 986 <include src="header_footer_settings.js"/> | 988 <include src="header_footer_settings.js"/> |
| 987 <include src="layout_settings.js"/> | 989 <include src="layout_settings.js"/> |
| 988 <include src="color_settings.js"/> | 990 <include src="color_settings.js"/> |
| 989 <include src="margin_settings.js"/> | 991 <include src="margin_settings.js"/> |
| OLD | NEW |