Revert "Hide wmail account creation in iOS app"

This reverts commit 168eaf0086.

Conflicts:
	src/js/controller/login/add-account.js
This commit is contained in:
Tankred Hase 2015-04-29 08:48:59 +02:00
parent f62257a595
commit 9454739818
2 changed files with 1 additions and 27 deletions

View File

@ -74,32 +74,6 @@ var AddAccountCtrl = function($scope, $location, $routeParams, $timeout, $q, mai
$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 && chrome.runtime.getPlatformInfo)) {
$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;

View File

@ -22,7 +22,7 @@
</div>
</form>
<p class="typo-paragraph" ng-hide="isIOS">
<p class="typo-paragraph">
Or sign up for an encrypted <a href="#create-account">Whiteout Mailbox</a>.
</p>
</main>