1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95// install : cordova plugin add cordova-plugin-inappbrowser
// link : https://github.com/apache/cordova-plugin-inappbrowser
angular.module('ngCordova.plugins.inAppBrowser', [])
.provider('$cordovaInAppBrowser', [function () {
var ref;
var defaultOptions = this.defaultOptions = {};
this.setDefaultOptions = function (config) {
defaultOptions = angular.extend(defaultOptions, config);
};
this.$get = ['$rootScope', '$q', '$window', '$timeout', function ($rootScope, $q, $window, $timeout) {
return {
open: function (url, target, requestOptions) {
var q = $q.defer();
if (requestOptions && !angular.isObject(requestOptions)) {
q.reject('options must be an object');
return q.promise;
}
var options = angular.extend({}, defaultOptions, requestOptions);
var opt = [];
angular.forEach(options, function (value, key) {
opt.push(key + '=' + value);
});
var optionsString = opt.join();
ref = $window.open(url, target, optionsString);
ref.addEventListener('loadstart', function (event) {
$timeout(function () {
$rootScope.$broadcast('$cordovaInAppBrowser:loadstart', event);
});
}, false);
ref.addEventListener('loadstop', function (event) {
q.resolve(event);
$timeout(function () {
$rootScope.$broadcast('$cordovaInAppBrowser:loadstop', event);
});
}, false);
ref.addEventListener('loaderror', function (event) {
q.reject(event);
$timeout(function () {
$rootScope.$broadcast('$cordovaInAppBrowser:loaderror', event);
});
}, false);
ref.addEventListener('exit', function (event) {
$timeout(function () {
$rootScope.$broadcast('$cordovaInAppBrowser:exit', event);
});
}, false);
return q.promise;
},
close: function () {
ref.close();
ref = null;
},
show: function () {
ref.show();
},
executeScript: function (details) {
var q = $q.defer();
ref.executeScript(details, function (result) {
q.resolve(result);
});
return q.promise;
},
insertCSS: function (details) {
var q = $q.defer();
ref.insertCSS(details, function (result) {
q.resolve(result);
});
return q.promise;
}
};
}];
}]);