Add scrolling and a "Known Issues" section
Sasky [04-26-15 - 03:14]
Add scrolling and a "Known Issues" section
diff --git a/html/skillFormulas.html b/html/skillFormulas.html
index 1eddf16..44c9b3c 100644
--- a/html/skillFormulas.html
+++ b/html/skillFormulas.html
@@ -29,12 +29,12 @@
on-select="toggleBranch(branch)">
</abn-tree>
</div>
-<div class="col-md-5" ng-controller="SkillListController">
+<div class="col-md-5 vpscroll" ng-controller="SkillListController">
<div id="mainSkillList" class="skill-list">
<skill-full info="skill" ng-repeat="skill in skills | orderBy:'name'"></skill-full>
</div>
</div>
-<div class="col-md-5" ng-controller="LoadoutController" id="loadout">
+<div class="col-md-5 vpscroll" ng-controller="LoadoutController" id="loadout">
<div class="row">
<label class="col-md-4">Health:</label> <label class="col-md-4">Magicka:</label><label class="col-md-4">Stamina:</label>
</div><div class="row">
@@ -64,6 +64,13 @@
<li>4/19 - Add skill tree for selection</li>
<li>4/18 - Initial release</li>
</ul>
+ <h3>Known Issues</h3>
+ <ul>
+ <li>Accuracy on ultimates is a bit low</li>
+ <li>Dark Exchange (and morphs) don't work for stamina values</li>
+ <li>No vampire. PTS templates just have WW</li>
+ <li>Brutal Pounce - AB_PHYSICAL_DAMAGE. Bug for tooltip on PTS</li>
+ </ul>
<p><a href="demo.html">Samples of upcoming changes</a></p>
</div>
</div>
diff --git a/html/style.css b/html/style.css
index 386d515..0a8e730 100644
--- a/html/style.css
+++ b/html/style.css
@@ -127,4 +127,9 @@ div.paginateContain .pagination { margin: 0px auto; }
background-color: #FFE;
border: 1px solid #ABC;
border-radius: 6px;
+}
+
+.vpscroll {
+ height: 80vh;
+ overflow: auto;
}
\ No newline at end of file