-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
if weather or icofont icons loaded externally use them
- Loading branch information
Dave Conway-Jones
committed
Dec 20, 2016
1 parent
a3c6e24
commit e7f0199
Showing
5 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
<ng-md-icon ng-if="iconType==='angular-material'" icon="{{icon}}"></ng-md-icon> | ||
<div ng-if="iconType==='fa'" style="font-size:1.17em; display:inline-block; margin:auto;"><i class="fa fa-fw" ng-class="icon"></i></div> | ||
<div ng-if="iconType==='wi'" style="font-size:1.17em; display:inline-block; margin:auto;"><i class="wi wi-fw" ng-class="icon"></i></div> | ||
<div ng-if="iconType==='icofont'" style="font-size:1.17em; display:inline-block; margin:auto;"><i class="icofont icofont-fw" ng-class="icon"></i></div> | ||
<img ng-if="iconType==='image'" ng-src="{{url}}" style="width:24px; display:block; margin:auto;"></img> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters