Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
db61d527
Commit
db61d527
authored
Mar 31, 2014
by
csillag
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated annotator to 04d14657 (fix-event-signature branch)
parent
76e7496b
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
78 additions
and
44 deletions
+78
-44
annotator.coffee
h/lib/_annotator_mapsrc/src/annotator.coffee
+10
-9
class.coffee
h/lib/_annotator_mapsrc/src/class.coffee
+5
-3
texthighlights.coffee
h/lib/_annotator_mapsrc/src/plugin/texthighlights.coffee
+19
-11
annotator.js
h/lib/annotator.js
+13
-10
annotator.map
h/lib/annotator.map
+1
-1
annotator.texthighlights.js
h/lib/annotator.texthighlights.js
+29
-9
annotator.texthighlights.map
h/lib/annotator.texthighlights.map
+1
-1
No files found.
h/lib/_annotator_mapsrc/src/annotator.coffee
View file @
db61d527
...
...
@@ -825,8 +825,8 @@ class Annotator extends Delegator
for
anchor
in
@
anchors
[
index
]
?
[]
anchor
.
virtualize
index
onAnchorMouseover
:
(
event
,
annotations
,
highlightType
)
->
#console.log "Mouse over annotations:",
annotations
onAnchorMouseover
:
(
event
)
->
#console.log "Mouse over annotations:",
event.data.getAnnotations event
# Cancel any pending hiding of the viewer.
this
.
clearViewerHideTimer
()
...
...
@@ -835,17 +835,18 @@ class Annotator extends Delegator
# already displaying the viewer
return
false
if
@
mouseIsDown
or
@
viewer
.
isShown
()
this
.
showViewer
(
annotations
,
util
.
mousePosition
(
event
,
@
wrapper
[
0
]))
this
.
showViewer
event
.
data
.
getAnnotations
(
event
),
util
.
mousePosition
(
event
,
@
wrapper
[
0
])
onAnchorMouseout
:
(
event
,
annotations
,
highlightType
)
->
#console.log "Mouse out on annotations:",
annotations
onAnchorMouseout
:
(
event
)
->
#console.log "Mouse out on annotations:",
event.data.getAnnotations event
this
.
startViewerHideTimer
()
onAnchorMousedown
:
(
event
,
annotations
,
highlightType
)
->
#console.log "Mouse down on annotations:",
annotations
onAnchorMousedown
:
(
event
)
->
#console.log "Mouse down on annotations:",
event.data.getAnnotations event
onAnchorClick
:
(
event
,
annotations
,
highlightType
)
->
#console.log "Click on annotations:",
annotations
onAnchorClick
:
(
event
)
->
#console.log "Click on annotations:",
event.data.getAnnotations event
# Create namespace for Annotator plugins
class
Annotator
.
Plugin
extends
Delegator
...
...
h/lib/_annotator_mapsrc/src/class.coffee
View file @
db61d527
...
...
@@ -71,6 +71,7 @@ class Delegator
# bindTo - Selector String matching child elements. (default: @element)
# event - The event to listen for.
# functionName - A String function name to bind to the event.
# eventData - eventData to pass to jQuery (which will be present in event.data)
#
# Examples
#
...
...
@@ -82,7 +83,7 @@ class Delegator
# instance.addEvent('form :input', 'focus', 'onInputFocus')
#
# Returns itself.
addEvent
:
(
bindTo
,
event
,
functionName
)
->
addEvent
:
(
bindTo
,
event
,
functionName
,
eventData
=
null
)
->
f
=
if
typeof
functionName
is
'string'
this
[
functionName
]
else
...
...
@@ -94,12 +95,13 @@ class Delegator
bindTo
=
@
element
if
isBlankSelector
if
typeof
bindTo
is
'string'
@
element
.
delegate
bindTo
,
event
,
closure
@
element
.
delegate
bindTo
,
event
,
eventData
,
closure
else
if
this
.
isCustomEvent
(
event
)
# TODO: no way to support eventData here?
this
.
subscribe
event
,
closure
else
$
(
bindTo
).
bind
event
,
closure
$
(
bindTo
).
bind
event
,
eventData
,
closure
this
...
...
h/lib/_annotator_mapsrc/src/plugin/texthighlights.coffee
View file @
db61d527
...
...
@@ -33,17 +33,25 @@ class TextHighlight extends Annotator.Highlight
# Make a proper array out of the list
TextHighlight
.
$
.
makeArray
annotations
annotator
.
addEvent
".annotator-hl"
,
"mouseover"
,
(
event
)
=>
annotator
.
onAnchorMouseover
event
,
getAnnotations
event
,
@
highlightType
annotator
.
addEvent
".annotator-hl"
,
"mouseout"
,
(
event
)
=>
annotator
.
onAnchorMouseout
event
,
getAnnotations
event
,
@
highlightType
annotator
.
addEvent
".annotator-hl"
,
"mousedown"
,
(
event
)
=>
annotator
.
onAnchorMousedown
event
,
getAnnotations
event
,
@
highlightType
annotator
.
addEvent
".annotator-hl"
,
"click"
,
(
event
)
=>
annotator
.
onAnchorClick
event
,
getAnnotations
event
,
@
highlightType
annotator
.
addEvent
".annotator-hl"
,
"mouseover"
,
((
event
)
=>
annotator
.
onAnchorMouseover
event
),
type
:
@
highlightType
getAnnotations
:
(
event
)
=>
getAnnotations
event
annotator
.
addEvent
".annotator-hl"
,
"mouseout"
,
((
event
)
=>
annotator
.
onAnchorMouseout
event
),
type
:
@
highlightType
getAnnotations
:
(
event
)
=>
getAnnotations
event
annotator
.
addEvent
".annotator-hl"
,
"mousedown"
,
((
event
)
=>
annotator
.
onAnchorMousedown
event
),
type
:
@
highlightType
getAnnotations
:
(
event
)
=>
getAnnotations
event
annotator
.
addEvent
".annotator-hl"
,
"click"
,
((
event
)
=>
annotator
.
onAnchorClick
event
)
type
:
@
highlightType
getAnnotations
:
(
event
)
=>
getAnnotations
event
@
_inited
.
push
annotator
...
...
h/lib/annotator.js
View file @
db61d527
// Generated by CoffeeScript 1.6.3
/*
** Annotator 1.2.6-dev-
b10dad7
** Annotator 1.2.6-dev-
04d1465
** https://github.com/okfn/annotator/
**
** Copyright 2012 Aron Carroll, Rufus Pollock, and Nick Stenning.
** Dual licensed under the MIT and GPLv3 licenses.
** https://github.com/okfn/annotator/blob/master/LICENSE
**
** Built at: 2014-03-
29 07:07:40
Z
** Built at: 2014-03-
31 08:53:05
Z
*/
...
...
@@ -325,9 +325,12 @@
return
_results
;
};
Delegator
.
prototype
.
addEvent
=
function
(
bindTo
,
event
,
functionName
)
{
Delegator
.
prototype
.
addEvent
=
function
(
bindTo
,
event
,
functionName
,
eventData
)
{
var
closure
,
f
,
isBlankSelector
,
_this
=
this
;
if
(
eventData
==
null
)
{
eventData
=
null
;
}
f
=
typeof
functionName
===
'string'
?
this
[
functionName
]
:
functionName
;
closure
=
function
()
{
return
f
.
apply
(
_this
,
arguments
);
...
...
@@ -337,12 +340,12 @@
bindTo
=
this
.
element
;
}
if
(
typeof
bindTo
===
'string'
)
{
this
.
element
.
delegate
(
bindTo
,
event
,
closure
);
this
.
element
.
delegate
(
bindTo
,
event
,
eventData
,
closure
);
}
else
{
if
(
this
.
isCustomEvent
(
event
))
{
this
.
subscribe
(
event
,
closure
);
}
else
{
$
(
bindTo
).
bind
(
event
,
closure
);
$
(
bindTo
).
bind
(
event
,
eventData
,
closure
);
}
}
return
this
;
...
...
@@ -1694,21 +1697,21 @@
return
_results
;
};
Annotator
.
prototype
.
onAnchorMouseover
=
function
(
event
,
annotations
,
highlightType
)
{
Annotator
.
prototype
.
onAnchorMouseover
=
function
(
event
)
{
this
.
clearViewerHideTimer
();
if
(
this
.
mouseIsDown
||
this
.
viewer
.
isShown
())
{
return
false
;
}
return
this
.
showViewer
(
annotations
,
util
.
mousePosition
(
event
,
this
.
wrapper
[
0
]));
return
this
.
showViewer
(
event
.
data
.
getAnnotations
(
event
)
,
util
.
mousePosition
(
event
,
this
.
wrapper
[
0
]));
};
Annotator
.
prototype
.
onAnchorMouseout
=
function
(
event
,
annotations
,
highlightType
)
{
Annotator
.
prototype
.
onAnchorMouseout
=
function
(
event
)
{
return
this
.
startViewerHideTimer
();
};
Annotator
.
prototype
.
onAnchorMousedown
=
function
(
event
,
annotations
,
highlightType
)
{};
Annotator
.
prototype
.
onAnchorMousedown
=
function
(
event
)
{};
Annotator
.
prototype
.
onAnchorClick
=
function
(
event
,
annotations
,
highlightType
)
{};
Annotator
.
prototype
.
onAnchorClick
=
function
(
event
)
{};
return
Annotator
;
...
...
h/lib/annotator.map
View file @
db61d527
This diff is collapsed.
Click to expand it.
h/lib/annotator.texthighlights.js
View file @
db61d527
...
...
@@ -7,7 +7,7 @@
** Dual licensed under the MIT and GPLv3 licenses.
** https://github.com/okfn/annotator/blob/master/LICENSE
**
** Built at: 2014-03-
29 07:07:5
0Z
** Built at: 2014-03-
31 08:40:0
0Z
*/
...
...
@@ -55,17 +55,37 @@
});
return
TextHighlight
.
$
.
makeArray
(
annotations
);
};
annotator
.
addEvent
(
".annotator-hl"
,
"mouseover"
,
function
(
event
)
{
return
annotator
.
onAnchorMouseover
(
event
,
getAnnotations
(
event
,
_this
.
highlightType
));
annotator
.
addEvent
(
".annotator-hl"
,
"mouseover"
,
(
function
(
event
)
{
return
annotator
.
onAnchorMouseover
(
event
);
}),
{
type
:
this
.
highlightType
,
getAnnotations
:
function
(
event
)
{
return
getAnnotations
(
event
);
}
});
annotator
.
addEvent
(
".annotator-hl"
,
"mouseout"
,
function
(
event
)
{
return
annotator
.
onAnchorMouseout
(
event
,
getAnnotations
(
event
,
_this
.
highlightType
));
annotator
.
addEvent
(
".annotator-hl"
,
"mouseout"
,
(
function
(
event
)
{
return
annotator
.
onAnchorMouseout
(
event
);
}),
{
type
:
this
.
highlightType
,
getAnnotations
:
function
(
event
)
{
return
getAnnotations
(
event
);
}
});
annotator
.
addEvent
(
".annotator-hl"
,
"mousedown"
,
function
(
event
)
{
return
annotator
.
onAnchorMousedown
(
event
,
getAnnotations
(
event
,
_this
.
highlightType
));
annotator
.
addEvent
(
".annotator-hl"
,
"mousedown"
,
(
function
(
event
)
{
return
annotator
.
onAnchorMousedown
(
event
);
}),
{
type
:
this
.
highlightType
,
getAnnotations
:
function
(
event
)
{
return
getAnnotations
(
event
);
}
});
annotator
.
addEvent
(
".annotator-hl"
,
"click"
,
function
(
event
)
{
return
annotator
.
onAnchorClick
(
event
,
getAnnotations
(
event
,
_this
.
highlightType
));
annotator
.
addEvent
(
".annotator-hl"
,
"click"
,
(
function
(
event
)
{
return
annotator
.
onAnchorClick
(
event
);
}),
{
type
:
this
.
highlightType
,
getAnnotations
:
function
(
event
)
{
return
getAnnotations
(
event
);
}
});
return
this
.
_inited
.
push
(
annotator
);
};
...
...
h/lib/annotator.texthighlights.map
View file @
db61d527
{"version":3,"file":"annotator.texthighlights.js","sources":["_preamble.coffee","_annotator_mapsrc/src/plugin/texthighlights.coffee"],"names":[],"mappings":"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"}
\ No newline at end of file
{"version":3,"file":"annotator.texthighlights.js","sources":["_preamble.coffee","_annotator_mapsrc/src/plugin/texthighlights.coffee"],"names":[],"mappings":"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"}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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