Add sample of openBrowser() usage. Unfortunately it doesn't work because the radio buttons are acting weird.

This commit is contained in:
Simo Kinnunen
2014-04-22 11:03:33 +09:00
parent 0dfc502e80
commit ced84f0f66
4 changed files with 24 additions and 4 deletions

View File

@@ -1,3 +1,10 @@
module.exports = function NavigationCtrl($scope) {
$scope.activeBrowser = null
$scope.openURL = function() {
return $scope.control.openBrowser(
$scope.textURL
, $scope.activeBrowser
)
}
}