copay/public/views/preferencesLogs.html

17 lines
598 B
HTML

<div class="content p20v" ng-controller="preferencesLogs as logs">
<button class="black radius expand" ng-show="logs.isCordova" ng-style="{'background-color':index.backgroundColor}" ng-click="logs.sendLogs()" ><i class="fi-mail"></i>
<span translate>Send by email</span>
</button>
<ul class="no-bullet m0 size-14">
<li class="line-b" ng-repeat="l in logs.logs">
<span ng-class="{'text-warning': l.level=='warn', 'text-secondary': l.level=='debug', 'text-primary': l.level=='info', 'text-alert': l.level=='error' }">
{{l.msg}}
</span>
</li>
</ul>
</div>