Overview
| Comment: | ChromeOS: Whitespace cleanup | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 78f6a43a4eb000bf80ff6f12ef9fe475 | 
| User & Date: | rkeene on 2016-02-13 10:09:19 | 
| Other Links: | manifest | tags | 
Context
| 2016-02-13 | ||
| 15:43 | ChromeOS: More work towards making the PIN entry more useful check-in: 16fd3e5408 user: rkeene tags: trunk | |
| 10:09 | ChromeOS: Whitespace cleanup check-in: 78f6a43a4e user: rkeene tags: trunk | |
| 10:08 | ChromeOS: Made PIN entry failure code slightly cleaner check-in: 233d1929c2 user: rkeene tags: trunk | |
Changes
Modified build/chrome/cackey.js from [e6983d567a] to [130898c1ff].
| ︙ | ︙ | |||
| 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | 
				}
			}, function(pinWindow) {
				if (!pinWindow) {
					console.log("[cackey] No window was provided for PIN entry, this will not go well.");
					return;
				}
				pinWindow.drawAttention();
				pinWindow.focus();
				/*
				 * Register a handler to handle the window being closed without
				 * having sent anything
				 */
 | > | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | 
				}
			}, function(pinWindow) {
				if (!pinWindow) {
					console.log("[cackey] No window was provided for PIN entry, this will not go well.");
					return;
				}
				pinWindow.drawAttention();
				pinWindow.focus();
				/*
				 * Register a handler to handle the window being closed without
				 * having sent anything
				 */
 | 
| ︙ | ︙ |