@@ -7,7 +7,7 @@ import xitrum.etag.Etag
77
88object Url {
99 /**
10- * Ex: publicUrl("jquery/3.1.0 /dist/jquery.js")
10+ * Ex: publicUrl("jquery/3.1.1 /dist/jquery.js")
1111 *
1212 * @param path Relative to the "public" directory, without leading "/"
1313 */
@@ -24,7 +24,7 @@ object Url {
2424 }
2525
2626 /**
27- * Ex: publicUrl("jquery/3.1.0 /dist/jquery.js", "jquery/3.1.0 /dist/jquery.min.js")
27+ * Ex: publicUrl("jquery/3.1.1 /dist/jquery.js", "jquery/3.1.1 /dist/jquery.min.js")
2828 *
2929 * @param devPath File path to use in development mode, relative to the "public" directory, without leading "/"
3030 * @param prodPath File path to use in production mode, relative to the "public" directory, without leading "/"
@@ -35,7 +35,7 @@ object Url {
3535 }
3636
3737 /**
38- * Ex: publicUrl("jquery/3.1.0 /dist", "jquery.js", "jquery.min.js")
38+ * Ex: publicUrl("jquery/3.1.1 /dist", "jquery.js", "jquery.min.js")
3939 *
4040 * @param directory Relative to the "public" directory, without leading "/"
4141 * @param devFile File in the directory to use in development mode
@@ -58,7 +58,7 @@ object Url {
5858 }
5959
6060 /**
61- * Ex: webJarsUrl("jquery/3.1.0 /dist/jquery.js", "jquery/3.1.0 /dist/jquery.min.js")
61+ * Ex: webJarsUrl("jquery/3.1.1 /dist/jquery.js", "jquery/3.1.1 /dist/jquery.min.js")
6262 *
6363 * @param devPath File path to use in development mode
6464 * @param prodPath File path to use in production mode
@@ -69,7 +69,7 @@ object Url {
6969 }
7070
7171 /**
72- * Ex: webJarsUrl("jquery/3.1.0 /dist", "jquery.js", "jquery.min.js")
72+ * Ex: webJarsUrl("jquery/3.1.1 /dist", "jquery.js", "jquery.min.js")
7373 *
7474 * @param devFile File in the directory to use in development mode
7575 * @param prodFile File in the directory to use in production mode
@@ -120,22 +120,22 @@ trait Url {
120120 // ----------------------------------------------------------------------------
121121
122122 /**
123- * Ex: publicUrl("jquery/3.1.0 /dist/jquery.js")
123+ * Ex: publicUrl("jquery/3.1.1 /dist/jquery.js")
124124 *
125125 * @param path Relative to the "public" directory, without leading "/"
126126 */
127127 def publicUrl (path : String ) = Url .publicUrl(path)
128128
129129 /**
130- * Ex: publicUrl("jquery/3.1.0 /dist/jquery.js", "jquery/3.1.0 /dist/jquery.min.js")
130+ * Ex: publicUrl("jquery/3.1.1 /dist/jquery.js", "jquery/3.1.1 /dist/jquery.min.js")
131131 *
132132 * @param devPath File path to use in development mode, relative to the "public" directory, without leading "/"
133133 * @param prodPath File path to use in production mode, relative to the "public" directory, without leading "/"
134134 */
135135 def publicUrl (devPath : String , prodPath : String ) = Url .publicUrl(devPath, prodPath)
136136
137137 /**
138- * Ex: publicUrl("jquery/3.1.0 /dist", "jquery.js", "jquery.min.js")
138+ * Ex: publicUrl("jquery/3.1.1 /dist", "jquery.js", "jquery.min.js")
139139 *
140140 * @param directory Relative to the "public" directory, without leading "/"
141141 * @param devFile File in the directory to use in development mode
@@ -147,15 +147,15 @@ trait Url {
147147 def webJarsUrl (path : String ) = Url .webJarsUrl(path)
148148
149149 /**
150- * Ex: webJarsUrl("jquery/3.1.0 /dist/jquery.js", "jquery/3.1.0 /dist/jquery.min.js")
150+ * Ex: webJarsUrl("jquery/3.1.1 /dist/jquery.js", "jquery/3.1.1 /dist/jquery.min.js")
151151 *
152152 * @param devPath File path to use in development mode
153153 * @param prodPath File path to use in production mode
154154 */
155155 def webJarsUrl (devPath : String , prodPath : String ) = Url .webJarsUrl(devPath, prodPath)
156156
157157 /**
158- * Ex: webJarsUrl("jquery/3.1.0 /dist", "jquery.js", "jquery.min.js")
158+ * Ex: webJarsUrl("jquery/3.1.1 /dist", "jquery.js", "jquery.min.js")
159159 *
160160 * @param devFile File in the directory to use in development mode
161161 * @param prodFile File in the directory to use in production mode
0 commit comments