funcIntroDetailCtrl.js 580 B

1234567891011121314
  1. angular.module('push')
  2. .controller('FuncIntroDetailCtrl', function ($scope, $stateParams, $sce) {
  3. $scope.funcintro = $stateParams.funcint;
  4. $scope.comment = $sce.trustAsHtml($scope.funcintro.comment);
  5. $scope.openAppStore = function () {
  6. if (device.platform == "Android") {
  7. cordova.InAppBrowser.open("http://sj.qq.com/myapp/detail.htm?apkName=com.push.pushapp", '_system', 'location=yes');
  8. } else {
  9. cordova.InAppBrowser.open("https://itunes.apple.com/us/app/push科技/id1218178687?mt=8", '_system', 'location=yes');
  10. }
  11. };
  12. });