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
a96fd3b2
authored
Jun 02, 2013
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
isPointInside incorrectly caches the path used to calculate its value. By @lvanderbijl
parent
ad15a1c9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
raphael-min.js
+0
-0
raphael.core.js
+1
-1
raphael.js
+1
-1
No files found.
raphael-min.js
View file @
a96fd3b2
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.core.js
View file @
a96fd3b2
...
...
@@ -3652,7 +3652,7 @@
= (boolean) `true` if point inside the shape
\*/
elproto
.
isPointInside
=
function
(
x
,
y
)
{
var
rp
=
this
.
realPath
=
this
.
realPath
||
getPath
[
this
.
type
](
this
);
var
rp
=
this
.
realPath
=
getPath
[
this
.
type
](
this
);
if
(
this
.
attr
(
'transform'
)
&&
this
.
attr
(
'transform'
).
length
)
{
rp
=
R
.
transformPath
(
rp
,
this
.
attr
(
'transform'
));
}
...
...
raphael.js
View file @
a96fd3b2
...
...
@@ -4031,7 +4031,7 @@
= (boolean) `true` if point inside the shape
\*/
elproto
.
isPointInside
=
function
(
x
,
y
)
{
var
rp
=
this
.
realPath
=
this
.
realPath
||
getPath
[
this
.
type
](
this
);
var
rp
=
this
.
realPath
=
getPath
[
this
.
type
](
this
);
if
(
this
.
attr
(
'transform'
)
&&
this
.
attr
(
'transform'
).
length
)
{
rp
=
R
.
transformPath
(
rp
,
this
.
attr
(
'transform'
));
}
...
...
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