UNPKG

patternfly

Version:

This reference implementation of PatternFly is based on [Bootstrap v3](http://getbootstrap.com/). Think of PatternFly as a "skinned" version of Bootstrap with additional components and customizations.

21 lines (20 loc) 568 B
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="script/common.css"> <script src="script/common.js"></script> <script> function setup(){ $('input').datepicker({ format: 'mm-dd-yyyy' }); }; </script> </head> <body data-capture=".date, .datepicker"> <div class="input-append date"> <input type="text" value="12-02-2012"> <span class="add-on"><i class="icon-th"></i></span> </div> </body> </html>