Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
Update README.rdoc
Commit Description:
Update README.rdoc
// ie9- setTimeout & setInterval additional parameters fix
var global = require ( './_global' );
var $export = require ( './_export' );
var userAgent = require ( './_user-agent' );
var slice = []. slice ;
var MSIE = /MSIE .\./ . test ( userAgent ); // <- dirty ie9- check
var wrap = function ( set ) {
return function ( fn , time /* , ...args */ ) {
var boundArgs = arguments . length > 2 ;
var args = boundArgs ? slice . call ( arguments , 2 ) : false ;
return set ( boundArgs ? function () {
// eslint-disable-next-line no-new-func
( typeof fn == 'function' ? fn : Function ( fn )). apply ( this , args );
} : fn , time );
};
};
$export ( $export . G + $export . B + $export . F * MSIE , {
setTimeout : wrap ( global . setTimeout ),
setInterval : wrap ( global . setInterval )
});
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