简体   繁体   中英

Strange bootstrap behavior with Chrome/Sierra

With OSX Sierra, Chrome 57, Bootstrap 3.3.7, Font awesome 4.

The following :

<button type="button" class="btn btn-primary btn-md" data-loading-text="<i class='fa fa-circle-o-notch fa-spin'></i> wait">Go</button>

And the Js part :

$('.btn').on("click", (evt) => {
  $('.btn').button("loading");
});

Does not work correctly. But It works with Safari !?

Update : It seems that fa-spin IS the problem !? Don't know why

Any idea or workaround ?

It's difficult give an appropiatte answer, because i dont know exactly what the error is, but as ideas or workarounds i'd give this:

Verify the font awesome 4 file. fa-spin is tricky sometimes, so use this CDN: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css , is the best choice to make it work!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM