From 51ce6fd02ca971341bcc1f364d75f8d906394032 Mon Sep 17 00:00:00 2001 From: npmcdn-to-unpkg-bot Date: Thu, 1 Sep 2016 19:05:33 +0100 Subject: [PATCH] Replace npmcdn.com with unpkg.com --- README.md | 4 ++-- src/webtools/reagent/page.clj | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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)))