I am trying to redirect all calls of jquery to another script which returns the noConflict version of jquery.
The reason for this approach is because i am using flight.js.
My current map config is a follows:
map: {
'*': {
'jquery': 'jquery-private'
},
'jquery-private': {
'jquery': 'jquery'
}
}
Is there a way to have the same setup in curl.js
P.S. The wiki contains a page about mapping but i am not sure if the functionality exists.