mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
49 lines
675 B
HTML
49 lines
675 B
HTML
<html>
|
|
|
|
<script>
|
|
|
|
function GoBack()
|
|
{
|
|
//dump("************Inside GoBack\n");
|
|
// Load this xul to see the updated profile list
|
|
//this.location.replace("resource:/res/profile/profileManager.html");
|
|
this.location.href = "resource:/res/profile/profileManager.html";
|
|
//dump("************Loading main page again **********\n");
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
<body>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
Please select a valid profile first.
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr></tr>
|
|
<tr></tr>
|
|
<tr></tr>
|
|
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>
|
|
<input name=backButton type="button" value="Back " onclick="GoBack();">
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
</body>
|
|
</html>
|