﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
22113,Checking for the 'wp' JavaScript variable could be simpler,evansolomon,koopersmith,"In a few places we do this:

{{{
if ( typeof wp === 'undefined' )
    var wp = {};
}}}

That could be simplified to a one liner that's easier to read:

{{{
window.wp = window.wp || {};
}}}",enhancement,closed,normal,3.5,General,3.5,normal,fixed,has-patch,
