I have a script with a code like this:
$.ready(function() {
...
})
After I updated Blue Ridge, the code is not called anymore and some tests that verify an initial behaviour began to fail.
To make them pass again I had to do something like this:
require("...", {'onload': jQuery.ready})
I have a script with a code like this:
$.ready(function() {
...
})
After I updated Blue Ridge, the code is not called anymore and some tests that verify an initial behaviour began to fail.
To make them pass again I had to do something like this:
require("...", {'onload': jQuery.ready})