acidtib / pace-rails

Pace automatic web page progress bar, integrated in Rails assets pipeline.
MIT License
23 stars 2 forks source link

Pace Options #6

Open spq24 opened 7 years ago

spq24 commented 7 years ago

I want Pace to ignore an ajax request with a certain url...but I'll settle for ignoring all ajax requests if I have to.

I've tried:

<script> Pace.options = { ajax: false }; </script>

and

<script> window.paceOptions = { ajax: false, restartOnPushState: false, restartOnRequestAfter: false } </script>

and

<script> window.paceOptions = { ajax: { ignoreURLS: [/.notifications./] } }; </script>

but nothing has worked. Do I have to do something different since I'm using this gem?