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
355104d4
authored
Jul 13, 2014
by
Sergiu Dumitriu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Invalid "r" attribute on SVG rect nodes
parent
780ad9d7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
dev/raphael.svg.js
+1
-1
raphael-min.js
+0
-0
raphael.js
+1
-1
No files found.
dev/raphael.svg.js
View file @
355104d4
...
@@ -1171,7 +1171,7 @@ window.Raphael && window.Raphael.svg && function(R) {
...
@@ -1171,7 +1171,7 @@ window.Raphael && window.Raphael.svg && function(R) {
var
el
=
$
(
"rect"
);
var
el
=
$
(
"rect"
);
svg
.
canvas
&&
svg
.
canvas
.
appendChild
(
el
);
svg
.
canvas
&&
svg
.
canvas
.
appendChild
(
el
);
var
res
=
new
Element
(
el
,
svg
);
var
res
=
new
Element
(
el
,
svg
);
res
.
attrs
=
{
x
:
x
,
y
:
y
,
width
:
w
,
height
:
h
,
r
:
r
||
0
,
r
x
:
r
||
0
,
ry
:
r
||
0
,
fill
:
"none"
,
stroke
:
"#000"
};
res
.
attrs
=
{
x
:
x
,
y
:
y
,
width
:
w
,
height
:
h
,
rx
:
r
||
0
,
ry
:
r
||
0
,
fill
:
"none"
,
stroke
:
"#000"
};
res
.
type
=
"rect"
;
res
.
type
=
"rect"
;
$
(
el
,
res
.
attrs
);
$
(
el
,
res
.
attrs
);
return
res
;
return
res
;
...
...
raphael-min.js
View file @
355104d4
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
355104d4
...
@@ -6926,7 +6926,7 @@
...
@@ -6926,7 +6926,7 @@
var
el
=
$
(
"rect"
);
var
el
=
$
(
"rect"
);
svg
.
canvas
&&
svg
.
canvas
.
appendChild
(
el
);
svg
.
canvas
&&
svg
.
canvas
.
appendChild
(
el
);
var
res
=
new
Element
(
el
,
svg
);
var
res
=
new
Element
(
el
,
svg
);
res
.
attrs
=
{
x
:
x
,
y
:
y
,
width
:
w
,
height
:
h
,
r
:
r
||
0
,
r
x
:
r
||
0
,
ry
:
r
||
0
,
fill
:
"none"
,
stroke
:
"#000"
};
res
.
attrs
=
{
x
:
x
,
y
:
y
,
width
:
w
,
height
:
h
,
rx
:
r
||
0
,
ry
:
r
||
0
,
fill
:
"none"
,
stroke
:
"#000"
};
res
.
type
=
"rect"
;
res
.
type
=
"rect"
;
$
(
el
,
res
.
attrs
);
$
(
el
,
res
.
attrs
);
return
res
;
return
res
;
...
...
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