formatting changes only. no actual functionality difference
[catagits/Reaction.git] / lib / Reaction / UI / Widget / Collection / Grid / Member / WithActions.pm
1 package Reaction::UI::Widget::Collection::Grid::Member::WithActions;
2
3 use Reaction::UI::WidgetClass;
4
5 use namespace::clean -except => [ qw(meta) ];
6 extends 'Reaction::UI::Widget::Collection::Grid::Member';
7
8 implements fragment actions {
9   render action => over $_{viewport}->actions;
10 };
11
12 implements fragment action {
13   render 'viewport';
14 };
15
16 __PACKAGE__->meta->make_immutable;
17
18 1;
19
20 __END__;
21
22 =head1 NAME
23
24 Reaction::UI::Widget::Grid::Member::WithActions
25
26 =head1 DESCRIPTION
27
28 =head1 FRAGMENTS
29
30 =head1 AUTHORS
31
32 See L<Reaction::Class> for authors.
33
34 =head1 LICENSE
35
36 See L<Reaction::Class> for the license.
37
38 =cut