Popovers, always iOS style

Hey,

how can I achieve that my popovers always (on android, web, etc) have the iOS style?

Html

<button class="button" ng-click="setPlatform('ios')">
</button>

.

$scope.demo = 'ios';
$scope.setPlatform = function(p) {
document.body.classList.remove('platform-ios');
document.body.classList.remove('platform-android');
document.body.classList.add('platform-' + p);
$scope.demo = p;
}