Skip to content

Commit 4ab4166

Browse files
committed
build(pom.xml): update selectizejs to 0.12.5
Changelog: https://github.com/selectize/selectize.js/releases/tag/v0.12.5 No functional changes.
1 parent 21d4b77 commit 4ab4166

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@
559559
<robotframework.version>3.0.4</robotframework.version>
560560

561561
<!-- Don't forget to update version in the Url class and in the src/main/webapp/WEB-INF/views/series/add.html -->
562-
<selectizejs.version>0.12.4</selectizejs.version>
562+
<selectizejs.version>0.12.5</selectizejs.version>
563563

564564
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.5.19.RELEASE/spring-boot-dependencies/pom.xml) -->
565565
<selenium-htmlunit.version>2.21</selenium-htmlunit.version>

src/main/java/ru/mystamps/web/Url.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ public final class Url {
111111

112112
// CheckStyle: ignore LineLength for next 3 lines
113113
// FIXME: use minimal version of CSS file when it will be available (https://github.com/webjars/selectize.js/issues/3)
114-
public static final String SELECTIZE_CSS = "/public/selectize/0.12.4/css/selectize.bootstrap3.css";
115-
public static final String SELECTIZE_JS = "/public/selectize/0.12.4/js/standalone/selectize.min.js";
114+
public static final String SELECTIZE_CSS = "/public/selectize/0.12.5/css/selectize.bootstrap3.css";
115+
public static final String SELECTIZE_JS = "/public/selectize/0.12.5/js/standalone/selectize.min.js";
116116

117117
// see also pom.xml and ru.mystamps.web.config.MvcConfig#addResourceHandlers()
118118
// CheckStyle: ignore LineLength for next 5 lines

src/main/webapp/WEB-INF/views/series/add.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" th:href="${BOOTSTRAP_CSS}" />
1515
<link rel="stylesheet" href="https://cdn.rawgit.com/usrz/bootstrap-languages/3ac2a3d2b27ac43a471cd99e79d378a03b2c6b5f/languages.min.css" th:href="${BOOTSTRAP_LANGUAGE}" />
1616
<link rel="stylesheet" href="../../static/styles/main.css" th:href="${MAIN_CSS}" />
17-
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.4/css/selectize.bootstrap3.min.css" th:href="${SELECTIZE_CSS}" />
17+
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.5/css/selectize.bootstrap3.min.css" th:href="${SELECTIZE_CSS}" />
1818
</head>
1919
<body th:with="suggestCountryUrl=${addSeriesForm.country != null and addSeriesForm.country.slug != null ? 'null' : '''__@{${SUGGEST_SERIES_COUNTRY}}__'''},suggestCategoryUrl=${addSeriesForm.category != null and addSeriesForm.category.slug != null ? 'null' : '''__@{${SUGGEST_SERIES_CATEGORY}}__'''}"
2020
th:onload="|initPage(${suggestCategoryUrl}, ${suggestCountryUrl})|"
@@ -552,7 +552,7 @@ <h3 th:text="${#strings.capitalize(add_series)}">
552552
<!-- Placed at the end of the document so the pages load faster -->
553553
<script src="http://yandex.st/jquery/1.9.1/jquery.min.js" th:src="${JQUERY_JS}"></script>
554554
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" th:src="${BOOTSTRAP_JS}"></script>
555-
<script src="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.4/js/standalone/selectize.min.js" th:src="${SELECTIZE_JS}"></script>
555+
<script src="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.5/js/standalone/selectize.min.js" th:src="${SELECTIZE_JS}"></script>
556556

557557
<script src="../../../../javascript/CatalogUtils.js" th:src="${CATALOG_UTILS_JS}"></script>
558558
<script src="../../../../javascript/series/add.js" th:src="${SERIES_ADD_JS}"></script>

0 commit comments

Comments
 (0)