Standardized on fa-link icon for Link instead of external-link, which generally means Open In New Window or Go Offsite

This commit is contained in:
Matt Toback 2016-01-29 15:27:42 -05:00
parent 6fe850e2c1
commit f59f6a5486
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@
<script type="text/ng-template" id="shareLink.html">
<div class="share-modal-big-icon">
<i class="fa fa-external-link"></i>
<i class="fa fa-link"></i>
</div>
<div ng-include src="'shareLinkOptions.html'"></div>

View File

@ -123,7 +123,7 @@ function (angular, $, _) {
}
var menuTemplate;
if ($(e.target).hasClass('fa-external-link')) {
if ($(e.target).hasClass('fa-link')) {
menuTemplate = createExternalLinkMenu($scope);
} else {
menuTemplate = createMenuTemplate($scope);