Skip to content

Commit 14caf6d

Browse files
committed
pom.xml: update selectizejs to 0.12.4
Changelog: https://github.com/selectize/selectize.js/releases/tag/v0.12.4 No functional changes.
1 parent 2d98048 commit 14caf6d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -502,8 +502,8 @@
502502
<robotframework-selenium.version>1.4.0.8</robotframework-selenium.version>
503503
<robotframework.version>3.0.2</robotframework.version>
504504

505-
<!-- Don't forget to update version in the Url class -->
506-
<selectizejs.version>0.12.3</selectizejs.version>
505+
<!-- Don't forget to update version in the Url class and in the src/main/webapp/WEB-INF/views/series/add.html -->
506+
<selectizejs.version>0.12.4</selectizejs.version>
507507

508508
<!-- Redefine default value from spring-boot-dependencies (https://github.com/spring-projects/spring-boot/blob/v1.4.7.RELEASE/spring-boot-dependencies/pom.xml) -->
509509
<selenium.version>2.53.1</selenium.version>

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,16 @@ public final class Url {
100100

101101
// CheckStyle: ignore LineLength for next 3 lines
102102
// TODO: use minimal version of CSS file when it will be available (https://github.com/webjars/selectize.js/issues/3)
103-
public static final String SELECTIZE_CSS = "/public/selectize/0.12.3/css/selectize.bootstrap3.css";
104-
public static final String SELECTIZE_JS = "/public/selectize/0.12.3/js/standalone/selectize.min.js";
103+
public static final String SELECTIZE_CSS = "/public/selectize/0.12.4/css/selectize.bootstrap3.css";
104+
public static final String SELECTIZE_JS = "/public/selectize/0.12.4/js/standalone/selectize.min.js";
105105

106106
// see also pom.xml and ru.mystamps.web.config.MvcConfig#addResourceHandlers()
107107
// CheckStyle: ignore LineLength for next 5 lines
108108
public static final String BOOTSTRAP_CSS_CDN = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css";
109109
public static final String BOOTSTRAP_JS_CDN = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js";
110110
public static final String JQUERY_JS_CDN = "https://yandex.st/jquery/1.9.1/jquery.min.js";
111-
public static final String SELECTIZE_CSS_CDN = "https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.3/css/selectize.bootstrap3.min.css";
112-
public static final String SELECTIZE_JS_CDN = "https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.3/js/standalone/selectize.min.js";
111+
public static final String SELECTIZE_CSS_CDN = "https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.4/css/selectize.bootstrap3.min.css";
112+
public static final String SELECTIZE_JS_CDN = "https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.4/js/standalone/selectize.min.js";
113113

114114
// see also ru.mystamps.web.support.togglz.TogglzConfig#getTogglzConsole()
115115
public static final String TOGGLZ_CONSOLE_PAGE = "/togglz";

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/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.3/css/selectize.bootstrap3.min.css" th:href="${SELECTIZE_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}" />
1818
</head>
1919
<body th:with="suggestCountryUrl=${addSeriesForm.country != null and addSeriesForm.country.slug != null ? 'null' : '''__@{${SUGGEST_SERIES_COUNTRY}}__'''}"
2020
th:onload="|initPage(${suggestCountryUrl})|"
@@ -480,7 +480,7 @@ <h3 th:text="${#strings.capitalize(add_series)}">
480480
<!-- Placed at the end of the document so the pages load faster -->
481481
<script src="http://yandex.st/jquery/1.9.1/jquery.min.js" th:src="${JQUERY_JS}"></script>
482482
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" th:src="${BOOTSTRAP_JS}"></script>
483-
<script src="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.3/js/standalone/selectize.min.js" th:src="${SELECTIZE_JS}"></script>
483+
<script src="http://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.12.4/js/standalone/selectize.min.js" th:src="${SELECTIZE_JS}"></script>
484484

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

0 commit comments

Comments
 (0)