Make WordPress Core

Ticket #28966: 28966.patch

File 28966.patch, 449 bytes (added by SergeyBiryukov, 11 years ago)
  • Gruntfile.js

     
    161161                cssjanus: {
    162162                        core: {
    163163                                options: {
    164                                         swapLtrRtlInUrl: false
     164                                        swapLtrRtlInUrl: false,
     165                                        processContent: function( src ) {
     166                                                return src.replace( /url\((.+?)\.css\)/g, 'url($1-rtl.css)' );
     167                                        }
    165168                                },
    166169                                expand: true,
    167170                                cwd: SOURCE_DIR,