Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F21409841
PHUIXActionListView.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
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
Fri, Jul 31, 11:29 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
16408025
Default Alt Text
PHUIXActionListView.js (603 B)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment