Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
use uuid cookie
Commit Description:
use uuid cookie
define ( [
"../ajax"
], function ( jQuery ) {
"use strict" ;
jQuery . _evalUrl = function ( url , options ) {
return jQuery . ajax ( {
url : url ,
// Make this explicit, since user can override this through ajaxSetup (#11264)
type : "GET" ,
dataType : "script" ,
cache : true ,
async : false ,
global : false ,
// Only evaluate the response if it is successful (gh-4126)
// dataFilter is not invoked for failure responses, so using it instead
// of the default converter is kludgy but it works.
converters : {
"text script" : function () {}
},
dataFilter : function ( response ) {
jQuery . globalEval ( response , options );
}
} );
};
return jQuery . _evalUrl ;
} );
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings