projects
/
tech-radar.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added method to plot the blips
[tech-radar.git]
/
src
/
models
/
blip.js
1
tr
.
models
.
Blip
=
function
(
name
,
cycle
,
isNew
) {
2
var
self
= {};
3
4
self
.
name
=
function
() {
5
return
name
;
6
};
7
8
self
.
isNew
=
function
() {
9
return
isNew
;
10
};
11
12
self
.
cycle
=
function
() {
13
return
cycle
;
14
};
15
16
return
self
;
17
};