Related to 4.0.3 merge into 4.1, some minor updates that where missed in initial merge

[TFS Changeset #65017]
This commit is contained in:
starfighter83
2010-03-26 14:18:43 +00:00
parent f25750f561
commit 6e56a2f8d9
2 changed files with 5 additions and 5 deletions

View File

@@ -42,7 +42,7 @@
<asp:Literal ID="TopText" runat="server"></asp:Literal>
</p>
<table cellspacing="0" cellpadding="0" border="0">
<table id="loginTable" cellspacing="0" cellpadding="0" border="0">
<tr>
<td align="right">
<asp:Label ID="username" runat="server" AssociatedControlID="lname"></asp:Label>
@@ -90,7 +90,7 @@
</form>
<script type="text/javascript">
jQuery("#ctl00_body_lname").focus();
jQuery("#<%= lname.ClientID %>").focus();
jQuery('#<%= hf_height.ClientID %>').value = getViewportHeight();
jQuery('#<%= hf_width.ClientID %>').value = getViewportWidth();
</script>
@@ -101,8 +101,8 @@
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#loginTable").effect("shake", { times: 5, distance: 5 }, 80);
jQuery("#ctl00_body_lname").attr("style", jQuery("#ctl00_body_lname").attr("style") + "; border: 2px solid red;");
jQuery("#ctl00_body_passw").attr("style", jQuery("#ctl00_body_lname").attr("style") + "; border: 2px solid red;");
jQuery("#<%= lname.ClientID %>").attr("style", jQuery("#<%= lname.ClientID %>").attr("style") + "; border: 2px solid red;");
jQuery("#<%= passw.ClientID %>").attr("style", jQuery("#<%= passw.ClientID %>").attr("style") + "; border: 2px solid red;");
});
</script>

View File

@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.4200
// Runtime Version:2.0.50727.3603
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.