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
68d4b8fb
authored
Jul 28, 2011
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added new data() and removeData() methods, similar to jQuery ones.
parent
e78d730e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
123 additions
and
7 deletions
+123
-7
raphael-min.js
+0
-0
raphael.core.js
+58
-0
raphael.js
+65
-7
No files found.
raphael-min.js
View file @
68d4b8fb
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.core.js
View file @
68d4b8fb
...
@@ -208,6 +208,7 @@
...
@@ -208,6 +208,7 @@
tCommand
=
/
([
rstm
])[\s
,
]
*
((
-
?\d
*
\.?\d
*
(?:
e
[\-
+
]?\d
+
)?\s
*,
?\s
*
)
+
)
/ig
,
tCommand
=
/
([
rstm
])[\s
,
]
*
((
-
?\d
*
\.?\d
*
(?:
e
[\-
+
]?\d
+
)?\s
*,
?\s
*
)
+
)
/ig
,
pathValues
=
/
(
-
?\d
*
\.?\d
*
(?:
e
[\-
+
]?\d
+
)?)\s
*,
?\s
*/ig
,
pathValues
=
/
(
-
?\d
*
\.?\d
*
(?:
e
[\-
+
]?\d
+
)?)\s
*,
?\s
*/ig
,
radial_gradient
=
R
.
_radial_gradient
=
/^r
(?:\(([^
,
]
+
?)\s
*,
\s
*
([^\)]
+
?)\))?
/
,
radial_gradient
=
R
.
_radial_gradient
=
/^r
(?:\(([^
,
]
+
?)\s
*,
\s
*
([^\)]
+
?)\))?
/
,
eldata
=
{},
sortByKey
=
function
(
a
,
b
)
{
sortByKey
=
function
(
a
,
b
)
{
return
a
.
key
-
b
.
key
;
return
a
.
key
-
b
.
key
;
},
},
...
@@ -2271,6 +2272,63 @@
...
@@ -2271,6 +2272,63 @@
}
}
/*\
/*\
* Element.data
[ method ]
**
* Adds or retrieves given value asociated with given key.
**
* See also @Element.removeData
> Parameters
- key (string) key to store data
- value (any) #optional value to store
= (object) @Element
* or, if value is not specified:
= (any) value
> Usage
| for (var i = 0, i < 5, i++) {
| paper.circle(10 + 15 * i, 10, 10)
| .attr({fill: "#000"})
| .data("i", i)
| .click(function () {
| alert(this.data("i"));
| });
| }
\*/
elproto
.
data
=
function
(
key
,
value
)
{
var
data
=
eldata
[
this
.
id
]
=
eldata
[
this
.
id
]
||
{};
if
(
arguments
.
length
==
1
)
{
if
(
R
.
is
(
key
,
"object"
))
{
for
(
var
i
in
key
)
if
(
key
[
has
](
i
))
{
this
.
data
(
i
,
key
[
i
]);
}
return
this
;
}
eve
(
"data.get."
+
this
.
id
,
this
,
data
[
key
],
key
);
return
data
[
key
];
}
data
[
key
]
=
value
;
eve
(
"data.set."
+
this
.
id
,
this
,
value
,
key
);
return
this
;
};
/*\
* Element.removeData
[ method ]
**
* Removes value associated with an element by given key.
* If key is not provided, removes all the data of the element.
> Parameters
- key (string) #optional key
= (object) @Element
\*/
elproto
.
removeData
=
function
(
key
)
{
if
(
key
==
null
)
{
eldata
[
this
.
id
]
=
{};
}
else
{
eldata
[
this
.
id
]
&&
delete
eldata
[
this
.
id
][
key
];
}
return
this
;
};
/*\
* Element.hover
* Element.hover
[ method ]
[ method ]
**
**
...
...
raphael.js
View file @
68d4b8fb
...
@@ -6,12 +6,12 @@
...
@@ -6,12 +6,12 @@
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
// └─────────────────────────────────────────────────────────────────────┘ \\
// └─────────────────────────────────────────────────────────────────────┘ \\
/
*
/
/ ┌──────────────────────────────────────────────────────────────────────────────────────┐ \\
* Eve 0.3.0 - JavaScript Events Library
// │ Eve 0.3.0 - JavaScript Events Library │ \\
*
// ├──────────────────────────────────────────────────────────────────────────────────────┤ \\
* Copyright (c) 2011 Dmitry Baranovskiy (http://dmitry.baranovskiy.com/)
// │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://dmitry.baranovskiy.com/) │ \\
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
// │ Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license. │ \\
*/
// └──────────────────────────────────────────────────────────────────────────────────────┘ \\
(
function
(
glob
)
{
(
function
(
glob
)
{
var
version
=
"0.3.0"
,
var
version
=
"0.3.0"
,
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
- scope (object) context for the event handlers
- scope (object) context for the event handlers
- varargs (...) the rest of arguments will be sent to event handlers
- varargs (...) the rest of arguments will be sent to event handlers
**
**
= (
boolean) `false` if any of callbacks return false, `true` otherwise
= (
object) array of returned values from the listeners
\*/
\*/
eve
=
function
(
name
,
scope
)
{
eve
=
function
(
name
,
scope
)
{
var
e
=
events
,
var
e
=
events
,
...
@@ -494,6 +494,7 @@
...
@@ -494,6 +494,7 @@
tCommand
=
/
([
rstm
])[\s
,
]
*
((
-
?\d
*
\.?\d
*
(?:
e
[\-
+
]?\d
+
)?\s
*,
?\s
*
)
+
)
/ig
,
tCommand
=
/
([
rstm
])[\s
,
]
*
((
-
?\d
*
\.?\d
*
(?:
e
[\-
+
]?\d
+
)?\s
*,
?\s
*
)
+
)
/ig
,
pathValues
=
/
(
-
?\d
*
\.?\d
*
(?:
e
[\-
+
]?\d
+
)?)\s
*,
?\s
*/ig
,
pathValues
=
/
(
-
?\d
*
\.?\d
*
(?:
e
[\-
+
]?\d
+
)?)\s
*,
?\s
*/ig
,
radial_gradient
=
R
.
_radial_gradient
=
/^r
(?:\(([^
,
]
+
?)\s
*,
\s
*
([^\)]
+
?)\))?
/
,
radial_gradient
=
R
.
_radial_gradient
=
/^r
(?:\(([^
,
]
+
?)\s
*,
\s
*
([^\)]
+
?)\))?
/
,
eldata
=
{},
sortByKey
=
function
(
a
,
b
)
{
sortByKey
=
function
(
a
,
b
)
{
return
a
.
key
-
b
.
key
;
return
a
.
key
-
b
.
key
;
},
},
...
@@ -2557,6 +2558,63 @@
...
@@ -2557,6 +2558,63 @@
}
}
/*\
/*\
* Element.data
[ method ]
**
* Adds or retrieves given value asociated with given key.
**
* See also @Element.removeData
> Parameters
- key (string) key to store data
- value (any) #optional value to store
= (object) @Element
* or, if value is not specified:
= (any) value
> Usage
| for (var i = 0, i < 5, i++) {
| paper.circle(10 + 15 * i, 10, 10)
| .attr({fill: "#000"})
| .data("i", i)
| .click(function () {
| alert(this.data("i"));
| });
| }
\*/
elproto
.
data
=
function
(
key
,
value
)
{
var
data
=
eldata
[
this
.
id
]
=
eldata
[
this
.
id
]
||
{};
if
(
arguments
.
length
==
1
)
{
if
(
R
.
is
(
key
,
"object"
))
{
for
(
var
i
in
key
)
if
(
key
[
has
](
i
))
{
this
.
data
(
i
,
key
[
i
]);
}
return
this
;
}
eve
(
"data.get."
+
this
.
id
,
this
,
data
[
key
],
key
);
return
data
[
key
];
}
data
[
key
]
=
value
;
eve
(
"data.set."
+
this
.
id
,
this
,
value
,
key
);
return
this
;
};
/*\
* Element.removeData
[ method ]
**
* Removes value associated with an element by given key.
* If key is not provided, removes all the data of the element.
> Parameters
- key (string) #optional key
= (object) @Element
\*/
elproto
.
removeData
=
function
(
key
)
{
if
(
key
==
null
)
{
eldata
[
this
.
id
]
=
{};
}
else
{
eldata
[
this
.
id
]
&&
delete
eldata
[
this
.
id
][
key
];
}
return
this
;
};
/*\
* Element.hover
* Element.hover
[ method ]
[ method ]
**
**
...
...
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