Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Xavier Bachelot
lemonldap-ng
Commits
99df048c
Commit
99df048c
authored
Dec 20, 2009
by
Clément OUDOT
Browse files
Absolute position for help div
parent
833792d6
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/lemonldap-ng-manager/example/skins/default/manager.css
View file @
99df048c
...
...
@@ -94,6 +94,9 @@ input
background
:
#eee
;
margin
:
10px
auto
;
border
:
1px
solid
#bbb
;
position
:
absolute
;
left
:
393px
;
top
:
230px
;
}
#help
h1
,
#buttons
h1
,
#edition
h1
...
...
modules/lemonldap-ng-manager/example/skins/default/manager.js
View file @
99df048c
...
...
@@ -5,9 +5,16 @@
var
simpleTreeCollection
;
$
(
document
).
ready
(
function
(){
/* Drag and resize divs (require jQuery UI)*/
/* Help div (require jQuery UI) */
// Allow drag
$
(
"
#help
"
).
draggable
({
handle
:
'
h1
'
,
opacity
:
'
0.70
'
});
// Allow resize
$
(
"
#help
"
).
resizable
({
handles
:
'
all
'
,
alsoResize
:
'
#help_content
'
,
ghost
:
'
true
'
});
// Display/hide content with double click on title bar
$
(
"
#help h1
"
).
dblclick
(
function
(){
$
(
"
#help_content
"
).
slideToggle
(
'
slow
'
);
});
/* Simple Tree */
simpleTreeCollection
=
$
(
"
.simpleTree
"
).
simpleTree
({
autoclose
:
false
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment