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.

24 lines (23 loc) 627 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', calendarWeeks: true }); }; </script> </head> <body data-capture="input, .datepicker"> <div class="span6"> <input type="text" value="01-16-2012"> </div> <div class="span6"> <input type="text" value="12-16-2012"> </div> </body> </html>