How to show banner of admob in inappbrowser using cordov / ionic

I'm using ionic-framework. I can create admobbanner, but when I load inappbrowser the banner is not shown till I will close the inappbroswer.

Is there a way to show admob banner when inappbrowser is open?

I reccomend you to use this plugin which I'm maintaining. You can see detailed examples on how to initiate admob when cordova is loaded: https://github.com/appfeel/admob-google-cordova/wiki/Angular.js,-Ionic-apps

var app = angular.module('myApp', ['admobModule']);

app.config(['admobSvcProvider', function (admobSvcProvider) {
  // Optionally you can configure the options here:
  admobSvcProvider.setOptions({
    publisherId:          "YOUR_PUBLISHER_ID",  // Required
    interstitialAdId:     "YOUR_PUBLISHER_ID"
  });
}]);


app.run(['admobSvc', function (admobSvc) {
  $rootScope.$on('admob:' + admobSvc.events.onAdOpened, function onAdOpened(evt, e) {
    console.log('adOpened: type of ad:' + e.adType);
  });
}]);