Poltergeist - turning off JQMIGRATE warnings

jquery, poltergeist, ruby, ruby-on-rails, ruby-on-rails-3

Solution

Look for `jQuery.migrateMute = false` in `jquery-migrate.js` and set it to `true`

Problem

When running my test suite using poltergeist as the JavaScript driver, I am encountering the following warnings: ``` JQMIGRATE: jQuery.fn.attr(selected) may use property instead of attribute JQMIGRATE: jQuery.browser is deprecated ``` Is that possible to turn them off?

Original source