diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2014-02-10 15:29:09 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2014-02-10 15:29:09 +0100 |
commit | 031d20c405b922808f4bdf2997f964880b33ab66 (patch) | |
tree | 7fbda08ea61c9948db6b6fd1dd6db9a13370da4e /tests/FunctionalTests/active-controls/protected | |
parent | f35d43399a9ce03f08ffa326812bc5ed6764ef9e (diff) |
More tests porting
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected')
-rwxr-xr-x | tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page b/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page index 28f27b8f..54e6e39c 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page +++ b/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page @@ -2,7 +2,7 @@ <h1>Custom Login</h1>
-<a id="showLogin" href="#" onclick="new Effect.Appear('loginBox')">Login</a>
+<a id="showLogin" href="#" onclick="$('#loginBox').fadeIn()">Login</a>
<div id="loginBox" style="display: none;">
<div style="height:1em">
@@ -29,7 +29,7 @@ <br />
<com:TActiveLinkButton ID="checkLogin" OnCallback="doLogin" Text="Login" ValidationGroup="login" />
- <a href="#" onclick="new Effect.Fade('loginBox')">Close</a>
+ <a href="#" onclick="$('#loginBox').fadeOut()">Close</a>
</div>
|