Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
5ed44c0e
Commit
5ed44c0e
authored
14 years ago
by
Michal Rezler
Browse files
Options
Downloads
Patches
Plain Diff
Merge remote branch splitbrain/master and added back drag.js (for compatibility reason)
parent
8f266940
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/scripts/drag.js
+85
-0
85 additions, 0 deletions
lib/scripts/drag.js
with
85 additions
and
0 deletions
lib/scripts/drag.js
0 → 100644
+
85
−
0
View file @
5ed44c0e
/**
* Makes a DOM object draggable
*
* If you just want to move objects around, use drag.attach. For full
* customization, drag can be used as a javascript prototype, it is
* inheritance-aware.
*
* @link http://nofunc.org/Drag_Drop/
*/
var
drag
=
{
obj
:
null
,
handle
:
null
,
oX
:
0
,
// object X position
oY
:
0
,
// object Y position
eX
:
0
,
// event X delta
eY
:
0
,
// event Y delta
/**
* Attaches the needed handlers to the given object
*
* This can be called for multiple objects, the right one is later
* determined from the event itself. The handle is optional
*
* @param DOMObject obj The object that should be draggable
* @param DOMObject handle A handle on which the obj can be dragged
*/
attach
:
function
(
obj
,
handle
)
{
if
(
handle
){
handle
.
dragobject
=
obj
;
}
else
{
handle
=
obj
;
}
var
_this
=
this
;
addEvent
(
$
(
handle
),
'
mousedown
'
,
function
(
e
)
{
return
_this
.
start
(
e
);
});
},
/**
* Starts the dragging operation
*/
start
:
function
(
e
){
this
.
handle
=
e
.
target
;
if
(
this
.
handle
.
dragobject
){
this
.
obj
=
this
.
handle
.
dragobject
;
}
else
{
this
.
obj
=
this
.
handle
;
}
this
.
handle
.
className
+=
'
ondrag
'
;
this
.
obj
.
className
+=
'
ondrag
'
;
this
.
oX
=
parseInt
(
this
.
obj
.
style
.
left
);
this
.
oY
=
parseInt
(
this
.
obj
.
style
.
top
);
this
.
eX
=
e
.
pageX
;
this
.
eY
=
e
.
pageY
;
var
_this
=
this
;
this
.
mousehandlers
=
[
function
(
e
)
{
return
_this
.
drag
(
e
);},
function
(
e
)
{
return
_this
.
stop
(
e
);}];
addEvent
(
document
,
'
mousemove
'
,
this
.
mousehandlers
[
0
]);
addEvent
(
document
,
'
mouseup
'
,
this
.
mousehandlers
[
1
]);
return
false
;
},
/**
* Ends the dragging operation
*/
stop
:
function
(){
this
.
handle
.
className
=
this
.
handle
.
className
.
replace
(
/
?
ondrag/
,
''
);
this
.
obj
.
className
=
this
.
obj
.
className
.
replace
(
/
?
ondrag/
,
''
);
removeEvent
(
document
,
'
mousemove
'
,
this
.
mousehandlers
[
0
]);
removeEvent
(
document
,
'
mouseup
'
,
this
.
mousehandlers
[
1
]);
this
.
obj
=
null
;
this
.
handle
=
null
;
},
/**
* Moves the object during the dragging operation
*/
drag
:
function
(
e
)
{
if
(
this
.
obj
)
{
this
.
obj
.
style
.
top
=
(
e
.
pageY
+
this
.
oY
-
this
.
eY
+
'
px
'
);
this
.
obj
.
style
.
left
=
(
e
.
pageX
+
this
.
oX
-
this
.
eX
+
'
px
'
);
}
}
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment