Now count keys by size and colour

This commit is contained in:
iandoug 2015-08-13 00:18:29 +02:00
parent 3efd78bfa0
commit a56307d112
3 changed files with 3 additions and 3 deletions

2
kb.css
View file

@ -195,7 +195,7 @@ for i in (1..9) {
#rawdata, #customstyles { width: 100%; height: 400px; }
#noteseditor { height: 275px; }
#rawdata-error, #customstyles-error { white-space: pre; }
#summary { width: 100%; height: 400px; padding-left: 20px;}
#summary { margin-left: 20px; padding-left: 20px; }
#tab-content {
border-left: 1px solid #ddd;

View file

@ -821,6 +821,7 @@ Nav Bar / Header
</alert>
</div>
</div>
<!-- SUMMARY -->
<div id="summary" ng-class="{hidden:selTab!=4}">
<div class="col-md-12 col-lg-12 row">
@ -833,7 +834,6 @@ Nav Bar / Header
</div>
</div>
</div>
</div>
<!--***********************************************
Footer

2
kb.js
View file

@ -287,7 +287,7 @@
}
else
{var thisk = "";};
thisk += key.width + " x " + key.height;
thisk += key.width + " x " + key.height + " (" + key.color + ")";
if (counts[thisk])
{counts[thisk]++;}
else