diff options
| -rw-r--r-- | www/js/LogCtrl.js | 4 | ||||
| -rw-r--r-- | www/templates/log.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/www/js/LogCtrl.js b/www/js/LogCtrl.js index f8809661..d2a9451d 100644 --- a/www/js/LogCtrl.js +++ b/www/js/LogCtrl.js @@ -92,8 +92,8 @@ angular.module('zmApp.controllers').controller('zmApp.LogCtrl', ['$scope', '$roo .then(function(res) { if (res) - { - logstring = "Logs for version:" + $scope.zmAppVersion + "\n" + logstring; + { + logstring = "Logs for version:" + $scope.zmAppVersion + " ("+$rootScope.platformOS+")\n" + logstring; sendEmailReally(logstring); } diff --git a/www/templates/log.html b/www/templates/log.html index 5efed72f..f4e32d66 100644 --- a/www/templates/log.html +++ b/www/templates/log.html @@ -13,7 +13,7 @@ </div> </ion-nav-buttons> <ion-content scroll-sista delegate-handle="none" overflow-scroll="false" mouse-wheel-scroll> - <b>{{$root.appName}} {{'kVersion'|translate}}: {{zmAppVersion}}</b> + <b>{{$root.appName}} {{'kVersion'|translate}}: {{zmAppVersion}} ({{$root.platformOS}})</b> <br/> <!-- don't indent here -- its a pre--> <pre>{{log.logString}}</pre> |
