Update the Iris color picker to version 1.0.3, which stops using the deprecated jQuery.browser property.

props mattwiebe.
fixes #23484.



git-svn-id: https://develop.svn.wordpress.org/trunk@23443 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-02-16 17:44:41 +00:00
parent 0c89805886
commit 746187f768
2 changed files with 6 additions and 5 deletions

View File

@ -16,11 +16,12 @@
palettes: true
},
_create: function() {
// bail early for IE < 8
if ( $.browser.msie && parseInt( $.browser.version, 10 ) < 8 )
// bail early for unsupported Iris.
if ( ! $.support.iris )
return;
var self = this;
var el = self.element;
$.extend( self.options, el.data() );
self.initialValue = el.val();

File diff suppressed because one or more lines are too long