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
dea6daaf
authored
Jan 28, 2009
by
Jeff Nichols
Committed by
Dmitry Baranovskiy
Jan 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed tabs to spaces.
Signed-off-by: Dmitry Baranovskiy <dmitry.baranovskiy@gmail.com>
parent
399f9560
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
raphael.js
+8
-8
No files found.
raphael.js
View file @
dea6daaf
...
@@ -591,15 +591,15 @@ var Raphael = (function (type) {
...
@@ -591,15 +591,15 @@ var Raphael = (function (type) {
return
this
;
return
this
;
};
};
Element
.
prototype
.
insertAfter
=
function
(
element
)
{
Element
.
prototype
.
insertAfter
=
function
(
element
)
{
if
(
element
.
Group
.
nextSibling
)
{
if
(
element
.
Group
.
nextSibling
)
{
element
.
Group
.
parentNode
.
insertBefore
(
this
.
Group
,
element
.
Group
.
nextSibling
);
element
.
Group
.
parentNode
.
insertBefore
(
this
.
Group
,
element
.
Group
.
nextSibling
);
}
else
{
}
else
{
element
.
Group
.
parentNode
.
appendChild
(
this
.
Group
);
element
.
Group
.
parentNode
.
appendChild
(
this
.
Group
);
}
}
return
this
;
return
this
;
};
};
Element
.
prototype
.
insertBefore
=
function
(
element
)
{
Element
.
prototype
.
insertBefore
=
function
(
element
)
{
element
.
Group
.
parentNode
.
insertBefore
(
this
.
Group
,
element
.
Group
);
element
.
Group
.
parentNode
.
insertBefore
(
this
.
Group
,
element
.
Group
);
return
this
;
return
this
;
};
};
var
theCircle
=
function
(
vml
,
x
,
y
,
r
)
{
var
theCircle
=
function
(
vml
,
x
,
y
,
r
)
{
...
@@ -1275,11 +1275,11 @@ var Raphael = (function (type) {
...
@@ -1275,11 +1275,11 @@ var Raphael = (function (type) {
}
else
{
}
else
{
element
.
node
.
parentNode
.
appendChild
(
this
.
node
);
element
.
node
.
parentNode
.
appendChild
(
this
.
node
);
}
}
return
this
;
return
this
;
};
};
Element
.
prototype
.
insertBefore
=
function
(
element
)
{
Element
.
prototype
.
insertBefore
=
function
(
element
)
{
element
.
node
.
parentNode
.
insertBefore
(
this
.
node
,
element
.
node
);
element
.
node
.
parentNode
.
insertBefore
(
this
.
node
,
element
.
node
);
return
this
;
return
this
;
};
};
var
theCircle
=
function
(
svg
,
x
,
y
,
r
)
{
var
theCircle
=
function
(
svg
,
x
,
y
,
r
)
{
var
el
=
document
.
createElementNS
(
svg
.
svgns
,
"circle"
);
var
el
=
document
.
createElementNS
(
svg
.
svgns
,
"circle"
);
...
...
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