Side navigation
#15121 closed bug (fixed)
Opened May 30, 2014 08:10PM UTC
Closed June 02, 2014 08:44PM UTC
wrap module uses manipulation module, but does not declare the dependency
Reported by: | tj.vantoll | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.12/2.2 |
Component: | manipulation | Version: | 1.11.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
define([ "jquery/wrap" ], function( $ ) { $( "div" ).wrap( document.createElement( "div" ) ); });
This fails because
wrap.jsuses
$.fn.clone(), which is defined in
manipulation.js, but does not declare a dependency on it.
I'll send a PR.