Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
殷洪(管理员)
/
raphael
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
50a7f8d5
authored
Oct 02, 2013
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
href parameter for Paper.text does NOT behave like hyperlink in 2.1.2
parent
d18b7796
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
dev/raphael.svg.js
+1
-1
dev/raphaelTest.html
+3
-0
raphael-min.js
+0
-0
raphael.js
+1
-1
No files found.
dev/raphael.svg.js
View file @
50a7f8d5
...
@@ -322,13 +322,13 @@ window.Raphael && window.Raphael.svg && function(R) {
...
@@ -322,13 +322,13 @@ window.Raphael && window.Raphael.svg && function(R) {
case
"blur"
:
case
"blur"
:
o
.
blur
(
value
);
o
.
blur
(
value
);
break
;
break
;
case
"href"
:
case
"title"
:
case
"title"
:
var
hl
=
$
(
"title"
);
var
hl
=
$
(
"title"
);
var
val
=
R
.
_g
.
doc
.
createTextNode
(
value
);
var
val
=
R
.
_g
.
doc
.
createTextNode
(
value
);
hl
.
appendChild
(
val
);
hl
.
appendChild
(
val
);
node
.
appendChild
(
hl
);
node
.
appendChild
(
hl
);
break
;
break
;
case
"href"
:
case
"target"
:
case
"target"
:
var
pn
=
node
.
parentNode
;
var
pn
=
node
.
parentNode
;
if
(
pn
.
tagName
.
toLowerCase
()
!=
"a"
)
{
if
(
pn
.
tagName
.
toLowerCase
()
!=
"a"
)
{
...
...
dev/raphaelTest.html
View file @
50a7f8d5
...
@@ -23,6 +23,9 @@
...
@@ -23,6 +23,9 @@
// Initialize container when document is loaded
// Initialize container when document is loaded
window
.
onload
=
function
()
{
window
.
onload
=
function
()
{
paper
=
Raphael
(
0
,
0
,
640
,
720
,
"container"
);
paper
=
Raphael
(
0
,
0
,
640
,
720
,
"container"
);
paper
.
text
(
200
,
25
+
18
,
"Some Text that should be a link"
).
attr
({
'href'
:
"https:www.google.com"
});
};
};
//Work here, in a separate script file or via command line
//Work here, in a separate script file or via command line
</script>
</script>
...
...
raphael-min.js
View file @
50a7f8d5
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
50a7f8d5
...
@@ -6108,13 +6108,13 @@
...
@@ -6108,13 +6108,13 @@
case
"blur"
:
case
"blur"
:
o
.
blur
(
value
);
o
.
blur
(
value
);
break
;
break
;
case
"href"
:
case
"title"
:
case
"title"
:
var
hl
=
$
(
"title"
);
var
hl
=
$
(
"title"
);
var
val
=
R
.
_g
.
doc
.
createTextNode
(
value
);
var
val
=
R
.
_g
.
doc
.
createTextNode
(
value
);
hl
.
appendChild
(
val
);
hl
.
appendChild
(
val
);
node
.
appendChild
(
hl
);
node
.
appendChild
(
hl
);
break
;
break
;
case
"href"
:
case
"target"
:
case
"target"
:
var
pn
=
node
.
parentNode
;
var
pn
=
node
.
parentNode
;
if
(
pn
.
tagName
.
toLowerCase
()
!=
"a"
)
{
if
(
pn
.
tagName
.
toLowerCase
()
!=
"a"
)
{
...
...
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