Ionicpopover/Ion-content with scrollbar always visible

Hey guys I have the following ion-popover and I want to make the scrollbar always visible is there any way to achieve this?

  <script id="popoverCities.html" type="text/ng-template">
            <div>
              <ion-popover-view>
                <ion-content>
                  <div class="list cities-list" ng-repeat="city in MedsRefund.cities | orderBy: 'id'">
                    <label class="item item-radio label-radio" ng-click="cityClick(city.name)">
                      <input ng-model="MedsRefund.city"
                             ng-value="MedsRefund.city"
                             class="cities-radio-input" type="radio" name="group">
                      <div class="item-content">
                        <p>{{city.name}}</p>
                      </div>
                    </label>
                  </div>
                </ion-content>
              </ion-popover-view>
            </div>
          </script>