Datepicker not hidden initially when using ui-date with angular-ui, jquery-ui, and Chrome
JqueryUI version: 1.8.6 Angular-ui version: 0.2.1 Chrome version: 23.0.1271.95 Turns out this is an issue with Chrome and JqueryUI css and specifically the .ui-helper-hidden-accessible class. jquery-ui.css .ui-helper-hidden-accessible { position: absolute; left: -99999999px; } That is a lot of 9's for Chrome apparently. Removing one of the 9's fixes the issue: .ui-helper-hidden-accessible { position: absolute; left: -9999999px; }












