mirror of
https://github.com/moparisthebest/mail
synced 2024-11-24 18:02:15 -05:00
Hide wmail account creation in iOS app
This commit is contained in:
parent
4efab0daf0
commit
168eaf0086
@ -74,6 +74,32 @@ var AddAccountCtrl = function($scope, $location, $routeParams, $timeout, $q, mai
|
|||||||
$location.path('/login-set-credentials');
|
$location.path('/login-set-credentials');
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A helper function is detect if the app is running as an ios-cordova app
|
||||||
|
* @return {Boolean} if we are running on iOS
|
||||||
|
*/
|
||||||
|
$scope.checkIOS = function() {
|
||||||
|
if (!window.chrome || !chrome.runtime) {
|
||||||
|
$scope.isIOS = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// check which runtime the app is running under
|
||||||
|
chrome.runtime.getPlatformInfo(function(platformInfo) {
|
||||||
|
$timeout(function() {
|
||||||
|
if (chrome.runtime.lastError || !platformInfo) {
|
||||||
|
$scope.isIOS = false; // assume not running of iOS if something goes wrong
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$scope.isIOS = platformInfo.os.indexOf('ios') !== -1;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// check platform on init
|
||||||
|
$scope.checkIOS();
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = AddAccountCtrl;
|
module.exports = AddAccountCtrl;
|
@ -22,7 +22,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<p class="typo-paragraph">
|
<p class="typo-paragraph" ng-hide="isIOS">
|
||||||
Or sign up for an encrypted <a href="#create-account">Whiteout Mailbox</a>.
|
Or sign up for an encrypted <a href="#create-account">Whiteout Mailbox</a>.
|
||||||
</p>
|
</p>
|
||||||
</main>
|
</main>
|
||||||
|
Loading…
Reference in New Issue
Block a user