mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 04:15:26 +00:00
See ChangeLog.
Monotone-Parent: 7687ea3a86932c857758b36d555fd71f5ad1ecb5 Monotone-Revision: 826c26c2f6f34d0cea46bfa5fc4827ec833f3b9d Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2011-10-27T18:47:59
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2011-10-27 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* UI/WebServerResources/SOGoRootPage.js (initLogin): added sliding
|
||||
effect to about box.
|
||||
|
||||
2011-10-26 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/SQLSource.m
|
||||
|
||||
@@ -15,12 +15,10 @@ DIV#aboutBox
|
||||
{ position: absolute;
|
||||
z-index: 1000;
|
||||
left: 0px;
|
||||
top: 30px;
|
||||
width: 100%;
|
||||
text-align: center; }
|
||||
|
||||
DIV#aboutBox IMG
|
||||
{ margin-top: 20px; }
|
||||
|
||||
DIV#aboutBox DIV
|
||||
{ background-color: #fff;
|
||||
border: 1px solid #222;
|
||||
|
||||
@@ -16,13 +16,13 @@ function initLogin() {
|
||||
var about = $("about");
|
||||
if (about) {
|
||||
about.observe("click", function(event) {
|
||||
$("aboutBox").show();
|
||||
event.stop() });
|
||||
|
||||
if (!$("aboutBox").visible())
|
||||
Effect.SlideDown("aboutBox", { queue: { position: 'end', scope: 'aboutscope', limit: 2 } });
|
||||
event.stop(); });
|
||||
var aboutClose = $("aboutClose");
|
||||
aboutClose.observe("click", function(event) {
|
||||
$("aboutBox").hide();
|
||||
event.stop() });
|
||||
Effect.SlideUp("aboutBox", { duration: 2.0, queue: { position: 'end', scope: 'aboutscope', limit: 2 } });
|
||||
event.stop() });
|
||||
}
|
||||
|
||||
var submit = $("submit");
|
||||
|
||||
Reference in New Issue
Block a user