switch lock from image to icon

This commit is contained in:
Luke Pulverenti 2016-04-19 23:00:18 -04:00
parent 4c501821f0
commit 672fd6a864
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 774 B

View file

@ -60,7 +60,7 @@
var htmlName = "<div class='" + cssClass + "'>"; var htmlName = "<div class='" + cssClass + "'>";
if (item.LockData) { if (item.LockData) {
htmlName += '<img src="css/images/editor/lock.png" />'; htmlName += '<iron-icon icon="lock" style="height:18px"></iron-icon>';
} }
htmlName += name; htmlName += name;

View file

@ -131,7 +131,7 @@
break; break;
case "LockDataImage": case "LockDataImage":
if (rRow.HasLockData) { if (rRow.HasLockData) {
html += '<img src="css/images/editor/lock.png" style="width:18px"/>'; html += '<iron-icon icon="lock" style="height:18px"></iron-icon>';
} }
break; break;
case "TagsPrimaryImage": case "TagsPrimaryImage":