| Index: chrome/browser/resources/chromeos/offline_load.html
|
| diff --git a/chrome/browser/resources/chromeos/offline_load.html b/chrome/browser/resources/chromeos/offline_load.html
|
| index 90e207c86719d519260c8b60d055542280b4a070..ef1bf37e72e02badf8739219adec595407280fa9 100644
|
| --- a/chrome/browser/resources/chromeos/offline_load.html
|
| +++ b/chrome/browser/resources/chromeos/offline_load.html
|
| @@ -117,11 +117,11 @@ function showPage() {
|
| }
|
|
|
| document.addEventListener('DOMContentLoaded', function() {
|
| - var time_to_wait = localStrings.getString('time_to_wait');
|
| - var show_activation = localStrings.getString('show_activation') == 'true';
|
| - window.setTimeout(showPage, time_to_wait);
|
| + var timeToWait = localStrings.getString('time_to_wait');
|
| + var showActivation = localStrings.getString('show_activation') == 'true';
|
| + window.setTimeout(showPage, timeToWait);
|
| var lower = document.getElementById('lower');
|
| - if (show_activation)
|
| + if (showActivation)
|
| lower.style.display = 'block';
|
| });
|
| </script>
|
|
|