UNPKG

hdjs

Version:
34 lines 1.14 kB
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <script> window.hdjs = {}; window.hdjs.base = '../'; window.hdjs.uploader = 'test/php/uploader.php?'; window.hdjs.filesLists = 'test/php/filesLists.php?'; </script> <script src="../dist/static/requirejs/require.js"></script> <script src="../dist/static/requirejs/config.js"></script> </head> <body style="padding: 50px;"> <div class="input-group clockpicker"> <input type="text" class="form-control" value="09:30"> <span class="input-group-addon"> <span class="glyphicon glyphicon-time"></span> </span> </div> <script type="text/javascript"> require(['hdjs'], function (hdjs) { hdjs.clockpicker('.clockpicker',{ afterDone: function() { console.log("after hide times is "+$('.clockpicker input').val()); } }); }); </script> </body> </html>