diff --git a/README.md b/README.md index 0db1f61..fe55a96 100644 --- a/README.md +++ b/README.md @@ -41,11 +41,11 @@ Just the standard [Bootstrap CSS stylesheet][4] (plus optional theme): #### React-Bootstrap-DateTimePicker - https://npmcdn.com/react-bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css + https://unpkg.com/react-bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css #### React-Select - https://npmcdn.com/react-select/dist/react-select.min.css + https://unpkg.com/react-select/dist/react-select.min.css ## License diff --git a/src/webtools/reagent/page.clj b/src/webtools/reagent/page.clj index 1436874..3784396 100644 --- a/src/webtools/reagent/page.clj +++ b/src/webtools/reagent/page.clj @@ -13,7 +13,7 @@ [& [use-bootstrap-theme?]] (->> ["https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css" (if use-bootstrap-theme? "https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css") - "https://npmcdn.com/react-bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css" - "https://npmcdn.com/react-select/dist/react-select.min.css"] + "https://unpkg.com/react-bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css" + "https://unpkg.com/react-select/dist/react-select.min.css"] (remove nil?) (apply include-css)))