This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * ionRadioFix - fixes a bug in iOS 9 UIWebView that breaks the tilde selector in CSS. To | |
| * use this fix, include it after your Ionic bundle JS. | |
| * | |
| * Note: due to Angular directive override limitations, you'll need to change any reference | |
| * to <ion-radio> to <ion-radio-fix> to apply this patched radio button. | |
| * | |
| * Also, make sure to add the new CSS from the second part of this gist. | |
| */ | |
| angular.module('ionic').directive('ionRadioFix', function() { |
OlderNewer