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: http://core.svn.wordpress.org/trunk@23443 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c4dc002689
commit
ac621213df
|
@ -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
Loading…
Reference in New Issue