Created
April 17, 2019 13:28
-
-
Save 16pxdesign/8795958c976d40bb685abff43be7e2c5 to your computer and use it in GitHub Desktop.
air-datepicker only time-picker #picker #boostrap #jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.only-timepicker .datepicker--nav, | |
.only-timepicker .datepicker--content { | |
display: none; | |
} | |
.only-timepicker .datepicker--time { | |
border-top: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="text" class="only-time"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.only-time').datepicker({ | |
dateFormat: ' ', | |
timepicker: true, | |
classes: 'only-timepicker' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment