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
d936e191
authored
Oct 31, 2013
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merging TheCloudlessSky-prevent-multiple-svg-title
parent
e3d40fc6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
28 deletions
+39
-28
dev/raphael.core.js
+0
-1
dev/raphael.svg.js
+11
-4
raphael-min.js
+0
-0
raphael.js
+28
-23
No files found.
dev/raphael.core.js
View file @
d936e191
...
@@ -5063,7 +5063,6 @@
...
@@ -5063,7 +5063,6 @@
var
isPointInside
=
false
;
var
isPointInside
=
false
;
this
.
forEach
(
function
(
el
)
{
this
.
forEach
(
function
(
el
)
{
if
(
el
.
isPointInside
(
x
,
y
))
{
if
(
el
.
isPointInside
(
x
,
y
))
{
console
.
log
(
'runned'
);
isPointInside
=
true
;
isPointInside
=
true
;
return
false
;
// stop loop
return
false
;
// stop loop
}
}
...
...
dev/raphael.svg.js
View file @
d936e191
...
@@ -323,10 +323,17 @@ window.Raphael && window.Raphael.svg && function(R) {
...
@@ -323,10 +323,17 @@ window.Raphael && window.Raphael.svg && function(R) {
o
.
blur
(
value
);
o
.
blur
(
value
);
break
;
break
;
case
"title"
:
case
"title"
:
var
hl
=
$
(
"title"
);
var
title
=
node
.
getElementsByTagName
(
"title"
);
var
val
=
R
.
_g
.
doc
.
createTextNode
(
value
);
hl
.
appendChild
(
val
);
// Use the existing <title>.
node
.
appendChild
(
hl
);
if
(
title
.
length
&&
(
title
=
title
[
0
]))
{
title
.
firstChild
.
nodeValue
=
value
;
}
else
{
title
=
$
(
"title"
);
var
val
=
R
.
_g
.
doc
.
createTextNode
(
value
);
title
.
appendChild
(
val
);
node
.
appendChild
(
title
);
}
break
;
break
;
case
"href"
:
case
"href"
:
case
"target"
:
case
"target"
:
...
...
raphael-min.js
View file @
d936e191
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
d936e191
...
@@ -5442,7 +5442,6 @@
...
@@ -5442,7 +5442,6 @@
var
isPointInside
=
false
;
var
isPointInside
=
false
;
this
.
forEach
(
function
(
el
)
{
this
.
forEach
(
function
(
el
)
{
if
(
el
.
isPointInside
(
x
,
y
))
{
if
(
el
.
isPointInside
(
x
,
y
))
{
console
.
log
(
'runned'
);
isPointInside
=
true
;
isPointInside
=
true
;
return
false
;
// stop loop
return
false
;
// stop loop
}
}
...
@@ -6109,10 +6108,17 @@
...
@@ -6109,10 +6108,17 @@
o
.
blur
(
value
);
o
.
blur
(
value
);
break
;
break
;
case
"title"
:
case
"title"
:
var
hl
=
$
(
"title"
);
var
title
=
node
.
getElementsByTagName
(
"title"
);
var
val
=
R
.
_g
.
doc
.
createTextNode
(
value
);
hl
.
appendChild
(
val
);
// Use the existing <title>.
node
.
appendChild
(
hl
);
if
(
title
.
length
&&
(
title
=
title
[
0
]))
{
title
.
firstChild
.
nodeValue
=
value
;
}
else
{
title
=
$
(
"title"
);
var
val
=
R
.
_g
.
doc
.
createTextNode
(
value
);
title
.
appendChild
(
val
);
node
.
appendChild
(
title
);
}
break
;
break
;
case
"href"
:
case
"href"
:
case
"target"
:
case
"target"
:
...
@@ -7733,24 +7739,23 @@
...
@@ -7733,24 +7739,23 @@
// Needed to fix the vml setViewBox issues
// Needed to fix the vml setViewBox issues
elproto
.
auxGetBBox
=
R
.
el
.
getBBox
;
elproto
.
auxGetBBox
=
R
.
el
.
getBBox
;
elproto
.
getBBox
=
function
(){
elproto
.
getBBox
=
function
(){
var
b
=
this
.
auxGetBBox
();
var
b
=
this
.
auxGetBBox
();
if
(
this
.
paper
&&
this
.
paper
.
_viewBoxShift
)
if
(
this
.
paper
&&
this
.
paper
.
_viewBoxShift
)
{
{
var
c
=
{};
var
c
=
{};
var
z
=
1
/
this
.
paper
.
_viewBoxShift
.
scale
;
var
z
=
1
/
this
.
paper
.
_viewBoxShift
.
scale
;
c
.
x
=
b
.
x
-
this
.
paper
.
_viewBoxShift
.
dx
;
c
.
x
=
b
.
x
-
this
.
paper
.
_viewBoxShift
.
dx
;
c
.
x
*=
z
;
c
.
x
*=
z
;
c
.
y
=
b
.
y
-
this
.
paper
.
_viewBoxShift
.
dy
;
c
.
y
=
b
.
y
-
this
.
paper
.
_viewBoxShift
.
dy
;
c
.
y
*=
z
;
c
.
y
*=
z
;
c
.
width
=
b
.
width
*
z
;
c
.
width
=
b
.
width
*
z
;
c
.
height
=
b
.
height
*
z
;
c
.
height
=
b
.
height
*
z
;
c
.
x2
=
c
.
x
+
c
.
width
;
c
.
x2
=
c
.
x
+
c
.
width
;
c
.
y2
=
c
.
y
+
c
.
height
;
c
.
y2
=
c
.
y
+
c
.
height
;
return
c
;
return
c
;
}
}
return
b
;
return
b
;
};
};
elproto
.
_getBBox
=
function
()
{
elproto
.
_getBBox
=
function
()
{
if
(
this
.
removed
)
{
if
(
this
.
removed
)
{
return
{};
return
{};
...
...
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