Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
fix wrong merge
Commit Description:
fix wrong merge
define ( [
"../core" ,
"../queue" ,
"../effects" // Delay is optional because of this dependency
], function ( jQuery ) {
"use strict" ;
// Based off of the plugin by Clint Helfers, with permission.
// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
jQuery . fn . delay = function ( time , type ) {
time = jQuery . fx ? jQuery . fx . speeds [ time ] || time : time ;
type = type || "fx" ;
return this . queue ( type , function ( next , hooks ) {
var timeout = window . setTimeout ( next , time );
hooks . stop = function () {
window . clearTimeout ( timeout );
};
} );
};
return jQuery . fn . delay ;
} );
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