Fix order, declaration, tabbing of vars in color-picker.js.
props kadamwhite. fixes #25877. git-svn-id: https://develop.svn.wordpress.org/trunk@26074 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b0c601170c
commit
974737e832
|
@ -1,11 +1,13 @@
|
|||
/* global wpColorPickerL10n:true */
|
||||
( function( $, undef ){
|
||||
|
||||
var ColorPicker,
|
||||
// html stuff
|
||||
var _before = '<a tabindex="0" class="wp-color-result" />',
|
||||
_before = '<a tabindex="0" class="wp-color-result" />',
|
||||
_after = '<div class="wp-picker-holder" />',
|
||||
_wrap = '<div class="wp-picker-container" />',
|
||||
_button = '<input type="button" class="button button-small hidden" />',
|
||||
_button = '<input type="button" class="button button-small hidden" />';
|
||||
|
||||
// jQuery UI Widget constructor
|
||||
ColorPicker = {
|
||||
options: {
|
||||
|
|
Loading…
Reference in New Issue