| <!DOCTYPE html> |
| <html> |
| <!-- |
| |
| Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| Use of this source code is governed by a BSD-style license that can be |
| found in the LICENSE file. |
| |
| Central roster: hosting all Google Talk chats in ChromeOS. |
| |
| --> |
| <head> |
| <style> |
| .talk_roster, |
| .talk_iframe { |
| width: 100%; |
| height: 100%; |
| border: none; |
| padding: 0px; |
| overflow: hidden; |
| } |
| body { |
| margin: 0px; |
| padding: 0px; |
| overflow: hidden; |
| text-align: center; |
| } |
| </style> |
| </head> |
| <body onload='onPageLoaded()'> |
| <div id='retryInfo' style='display:none'> |
| <p id='retryMessage'></p> |
| <p id='retryStatus'></p> |
| <input id='retryButton' type='button' value='' onclick='retryConnection()'/> |
| </div> |
| <script src="js/centralroster.js"></script> |
| </body> |
| </html> |
| |