Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2890351
PHUIXActionListView.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
603 B
Referenced Files
None
Subscribers
None
PHUIXActionListView.js
View Options
/**
* @provides phuix-action-list-view
* @requires javelin-install
* javelin-dom
*/
JX
.
install
(
'PHUIXActionListView'
,
{
construct
:
function
()
{
this
.
_items
=
[];
},
members
:
{
_items
:
null
,
_node
:
null
,
addItem
:
function
(
item
)
{
this
.
_items
.
push
(
item
);
this
.
getNode
().
appendChild
(
item
.
getNode
());
return
this
;
},
getNode
:
function
()
{
if
(
!
this
.
_node
)
{
var
attrs
=
{
className
:
'phabricator-action-list-view'
};
this
.
_node
=
JX
.
$N
(
'ul'
,
attrs
);
}
return
this
.
_node
;
}
}
});
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Jan 19, 13:26 (3 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1125048
Default Alt Text
PHUIXActionListView.js (603 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment