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
a3d3b76d
authored
Sep 19, 2011
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed set removal process and exclude method
parent
2ea2ddd8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
20 deletions
+17
-20
raphael-min.js
+0
-0
raphael.core.js
+3
-8
raphael.js
+12
-12
raphael.svg.js
+1
-0
raphael.vml.js
+1
-0
No files found.
raphael-min.js
View file @
a3d3b76d
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.core.js
View file @
a3d3b76d
...
@@ -4190,7 +4190,7 @@
...
@@ -4190,7 +4190,7 @@
\*/
\*/
setproto
.
forEach
=
function
(
callback
,
thisArg
)
{
setproto
.
forEach
=
function
(
callback
,
thisArg
)
{
for
(
var
i
=
0
,
ii
=
this
.
items
.
length
;
i
<
ii
;
i
++
)
{
for
(
var
i
=
0
,
ii
=
this
.
items
.
length
;
i
<
ii
;
i
++
)
{
if
(
callback
.
call
(
thisArg
,
this
.
items
[
i
])
===
false
)
{
if
(
callback
.
call
(
thisArg
,
this
.
items
[
i
]
,
i
)
===
false
)
{
return
this
;
return
this
;
}
}
}
}
...
@@ -4280,13 +4280,8 @@
...
@@ -4280,13 +4280,8 @@
= (boolean) `true` if object was found & removed from the set
= (boolean) `true` if object was found & removed from the set
\*/
\*/
setproto
.
exclude
=
function
(
el
)
{
setproto
.
exclude
=
function
(
el
)
{
for
(
var
i
=
0
,
ii
=
this
.
length
,
found
;
i
<
ii
;
i
++
)
if
(
found
||
this
[
i
]
==
el
)
{
for
(
var
i
=
0
,
ii
=
this
.
length
;
i
<
ii
;
i
++
)
if
(
this
[
i
]
==
el
)
{
this
[
i
]
=
this
[
i
+
1
];
this
.
splice
(
i
,
1
);
found
=
1
;
}
if
(
found
)
{
this
.
length
--
;
delete
this
[
i
];
return
true
;
return
true
;
}
}
};
};
...
...
raphael.js
View file @
a3d3b76d
...
@@ -1569,12 +1569,15 @@
...
@@ -1569,12 +1569,15 @@
tlen
=
t
.
length
,
tlen
=
t
.
length
,
absolute
=
t
[
0
]
!=
(
t
[
0
]
=
Str
(
t
[
0
]).
toLowerCase
()),
absolute
=
t
[
0
]
!=
(
t
[
0
]
=
Str
(
t
[
0
]).
toLowerCase
()),
inver
=
absolute
?
m
.
invert
()
:
0
,
inver
=
absolute
?
m
.
invert
()
:
0
,
x1
=
inver
&&
inver
.
x
(
0
,
0
),
x1
,
y1
=
inver
&&
inver
.
y
(
0
,
0
),
y1
,
x2
,
y2
,
x2
,
y2
,
bb
;
bb
;
if
(
t
[
0
]
==
"t"
&&
tlen
==
3
)
{
if
(
t
[
0
]
==
"t"
&&
tlen
==
3
)
{
if
(
absolute
)
{
if
(
absolute
)
{
x1
=
inver
.
x
(
0
,
0
),
y1
=
inver
.
y
(
0
,
0
),
x2
=
inver
.
x
(
t
[
1
],
t
[
2
]);
x2
=
inver
.
x
(
t
[
1
],
t
[
2
]);
y2
=
inver
.
y
(
t
[
1
],
t
[
2
]);
y2
=
inver
.
y
(
t
[
1
],
t
[
2
]);
m
.
translate
(
x2
-
x1
,
y2
-
y1
);
m
.
translate
(
x2
-
x1
,
y2
-
y1
);
...
@@ -1606,7 +1609,7 @@
...
@@ -1606,7 +1609,7 @@
if
(
absolute
)
{
if
(
absolute
)
{
x2
=
inver
.
x
(
t
[
3
],
t
[
4
]);
x2
=
inver
.
x
(
t
[
3
],
t
[
4
]);
y2
=
inver
.
y
(
t
[
3
],
t
[
4
]);
y2
=
inver
.
y
(
t
[
3
],
t
[
4
]);
m
.
scale
(
t
[
1
],
t
[
2
],
x2
-
x1
,
y2
-
y1
);
m
.
scale
(
t
[
1
],
t
[
2
],
x2
,
y2
);
}
else
{
}
else
{
m
.
scale
(
t
[
1
],
t
[
2
],
t
[
3
],
t
[
4
]);
m
.
scale
(
t
[
1
],
t
[
2
],
t
[
3
],
t
[
4
]);
}
}
...
@@ -3073,7 +3076,7 @@
...
@@ -3073,7 +3076,7 @@
setproto
.
forEach
=
function
(
callback
,
thisArg
)
{
setproto
.
forEach
=
function
(
callback
,
thisArg
)
{
for
(
var
i
=
0
,
ii
=
this
.
items
.
length
;
i
<
ii
;
i
++
)
{
for
(
var
i
=
0
,
ii
=
this
.
items
.
length
;
i
<
ii
;
i
++
)
{
if
(
callback
.
call
(
thisArg
,
this
.
items
[
i
])
===
false
)
{
if
(
callback
.
call
(
thisArg
,
this
.
items
[
i
]
,
i
)
===
false
)
{
return
this
;
return
this
;
}
}
}
}
...
@@ -3136,13 +3139,8 @@
...
@@ -3136,13 +3139,8 @@
};
};
setproto
.
exclude
=
function
(
el
)
{
setproto
.
exclude
=
function
(
el
)
{
for
(
var
i
=
0
,
ii
=
this
.
length
,
found
;
i
<
ii
;
i
++
)
if
(
found
||
this
[
i
]
==
el
)
{
for
(
var
i
=
0
,
ii
=
this
.
length
;
i
<
ii
;
i
++
)
if
(
this
[
i
]
==
el
)
{
this
[
i
]
=
this
[
i
+
1
];
this
.
splice
(
i
,
1
);
found
=
1
;
}
if
(
found
)
{
this
.
length
--
;
delete
this
[
i
];
return
true
;
return
true
;
}
}
};
};
...
@@ -4103,6 +4101,7 @@ window.Raphael.svg && function (R) {
...
@@ -4103,6 +4101,7 @@ window.Raphael.svg && function (R) {
if
(
this
.
removed
)
{
if
(
this
.
removed
)
{
return
;
return
;
}
}
this
.
paper
.
__set__
&&
this
.
paper
.
__set__
.
exclude
(
this
);
eve
.
unbind
(
"*.*."
+
this
.
id
);
eve
.
unbind
(
"*.*."
+
this
.
id
);
R
.
_tear
(
this
,
this
.
paper
);
R
.
_tear
(
this
,
this
.
paper
);
this
.
node
.
parentNode
.
removeChild
(
this
.
node
);
this
.
node
.
parentNode
.
removeChild
(
this
.
node
);
...
@@ -5036,6 +5035,7 @@ window.Raphael.vml && function (R) {
...
@@ -5036,6 +5035,7 @@ window.Raphael.vml && function (R) {
if
(
this
.
removed
)
{
if
(
this
.
removed
)
{
return
;
return
;
}
}
this
.
paper
.
__set__
&&
this
.
paper
.
__set__
.
exclude
(
this
);
R
.
eve
.
unbind
(
"*.*."
+
this
.
id
);
R
.
eve
.
unbind
(
"*.*."
+
this
.
id
);
R
.
_tear
(
this
,
this
.
paper
);
R
.
_tear
(
this
,
this
.
paper
);
this
.
node
.
parentNode
.
removeChild
(
this
.
node
);
this
.
node
.
parentNode
.
removeChild
(
this
.
node
);
...
...
raphael.svg.js
View file @
a3d3b76d
...
@@ -873,6 +873,7 @@ window.Raphael.svg && function (R) {
...
@@ -873,6 +873,7 @@ window.Raphael.svg && function (R) {
if
(
this
.
removed
)
{
if
(
this
.
removed
)
{
return
;
return
;
}
}
this
.
paper
.
__set__
&&
this
.
paper
.
__set__
.
exclude
(
this
);
eve
.
unbind
(
"*.*."
+
this
.
id
);
eve
.
unbind
(
"*.*."
+
this
.
id
);
R
.
_tear
(
this
,
this
.
paper
);
R
.
_tear
(
this
,
this
.
paper
);
this
.
node
.
parentNode
.
removeChild
(
this
.
node
);
this
.
node
.
parentNode
.
removeChild
(
this
.
node
);
...
...
raphael.vml.js
View file @
a3d3b76d
...
@@ -588,6 +588,7 @@ window.Raphael.vml && function (R) {
...
@@ -588,6 +588,7 @@ window.Raphael.vml && function (R) {
if
(
this
.
removed
)
{
if
(
this
.
removed
)
{
return
;
return
;
}
}
this
.
paper
.
__set__
&&
this
.
paper
.
__set__
.
exclude
(
this
);
R
.
eve
.
unbind
(
"*.*."
+
this
.
id
);
R
.
eve
.
unbind
(
"*.*."
+
this
.
id
);
R
.
_tear
(
this
,
this
.
paper
);
R
.
_tear
(
this
,
this
.
paper
);
this
.
node
.
parentNode
.
removeChild
(
this
.
node
);
this
.
node
.
parentNode
.
removeChild
(
this
.
node
);
...
...
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