Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
a-fung committed Oct 20, 2012
1 parent c404b74 commit 9705507
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/aspnetserver/template/admin.html
Expand Up @@ -67,7 +67,7 @@ <h1>
<span class="msg msg-Loading"></span>
<img src="img/loading.gif" /></td>
</tr>
<tr id="notiem-trow">
<tr id="noitem-trow">
<td colspan="99" class="msg msg-NoItem"></td>
</tr>
</tbody>
Expand Down
4 changes: 2 additions & 2 deletions source/scriptsharp/Module/ReadModule.cs
Expand Up @@ -98,11 +98,11 @@ private bool LoadingPage
_loadingPage = value;
if (value)
{
jQuery.Select("#read-loading").AddClass("fade").AddClass("in");
jQuery.Select("#read-loading").AddClass("fade in");
}
else
{
jQuery.Select("#read-loading").AddClass("fade").RemoveClass("in");
jQuery.Select("#read-loading").RemoveClass("in");
}
}
}
Expand Down

0 comments on commit 9705507

Please sign in to comment.