Make WordPress Core

Ticket #31798: 31798-gruntfile.diff

File 31798-gruntfile.diff, 902 bytes (added by yoavf, 10 years ago)
  • Gruntfile.js

     
    196196                                                name: 'swap-dashicons-left-right-arrows',
    197197                                                expr: /content/im,
    198198                                                action: function( prop, value ) {
     199                                                        value = value.replace( /'/g, '"' );
     200
    199201                                                        if ( value === '"\\f141"' ) { // dashicons-arrow-left
    200202                                                                value = '"\\f139"';
    201203                                                        } else if ( value === '"\\f340"' ) { // dashicons-arrow-left-alt
     
    208210                                                                value = '"\\f340"';
    209211                                                        } else if ( value === '"\\f345"' ) { // dashicons-arrow-right-alt2
    210212                                                                value = '"\\f341"';
     213                                                        } else if ( value === '"\\f171"' ) { // dashicons-undo
     214                                                                value = '"\\f172"';
     215                                                        } else if ( value === '"\\f172"' ) { // dashicons-redo
     216                                                                value = '"\\f171"';
    211217                                                        }
    212218                                                        return { prop: prop, value: value };
    213219                                                }