forked from Reklino/angular-resizable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusage.html
26 lines (26 loc) · 1.08 KB
/
usage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<main>
<region-compoment class='nav' [directions]="['right']">
<span class="icon-big icon_expand-1"></span>
<br /><br />
<h1>{{ title }}</h1>
<p>
A teensy weensy directive for creating resizable containers.
</p>
</region-compoment>
<div class="content">
<region-compoment class="row" [directions]="['bottom']" [rFlex]="true">
<region-compoment class="section" id="one" [directions]="['right']" [rFlex]="true">
<p>Works with flexbox.</p>
</region-compoment>
<div class="section" id="two">
<p>2</p>
</div>
</region-compoment>
<div class="row">
<region-compoment class="section" id="three" [directions]="['right']" [rFlex]="true">
<p>Completely seperates <strong>layout logic</strong> from <strong>resize logic</strong>. All layout logic must be done by you in the CSS (as it should be).</p>
</region-compoment>
<div class="section" id="four">4</div>
</div>
</div>
</main>