Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
add model solution
Commit Description:
add model solution
define ( [
"../var/document" ,
"../var/support"
], function ( document , support ) {
"use strict" ;
( function () {
var input = document . createElement ( "input" ),
select = document . createElement ( "select" ),
opt = select . appendChild ( document . createElement ( "option" ) );
input . type = "checkbox" ;
// Support: Android <=4.3 only
// Default value for a checkbox should be "on"
support . checkOn = input . value !== "" ;
// Support: IE <=11 only
// Must access selectedIndex to make default options select
support . optSelected = opt . selected ;
// Support: IE <=11 only
// An input loses its value after becoming a radio
input = document . createElement ( "input" );
input . value = "t" ;
input . type = "radio" ;
support . radioValue = input . value === "t" ;
} )();
return support ;
} );
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