diff options
Diffstat (limited to 'www/js/HelpCtrl.js')
| -rw-r--r-- | www/js/HelpCtrl.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/www/js/HelpCtrl.js b/www/js/HelpCtrl.js index b022121d..6f4a7466 100644 --- a/www/js/HelpCtrl.js +++ b/www/js/HelpCtrl.js @@ -61,6 +61,15 @@ angular.module('zmApp.controllers').controller('zmApp.HelpCtrl', ['$scope', '$ro } + $scope.launchUrl = function (url) { + + options = { + }; + console.log ('got '+url); + cordova.InAppBrowser.open(url, '_blank', options); + + }; + //------------------------------------------------------------------------- // Lets make sure we set screen dim properly as we enter // The problem is we enter other states before we leave previous states |
