@indigina/kendo 1.0.152-beta → 1.0.155-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/indigina-kendo.umd.js +6 -0
- package/bundles/indigina-kendo.umd.js.map +1 -1
- package/bundles/indigina-kendo.umd.min.js +1 -1
- package/bundles/indigina-kendo.umd.min.js.map +1 -1
- package/esm2015/lib/angular/indigina.module.js +4 -1
- package/esm2015/lib/kendo.module.js +4 -1
- package/fesm2015/indigina-kendo.js +6 -0
- package/fesm2015/indigina-kendo.js.map +1 -1
- package/indigina-kendo.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -1245,6 +1245,9 @@
|
|
|
1245
1245
|
function IndiginaModule() {
|
|
1246
1246
|
}
|
|
1247
1247
|
IndiginaModule.forRoot = function (configuration) {
|
|
1248
|
+
if (!configuration.appSettings.apiUrl.endsWith('/')) {
|
|
1249
|
+
configuration.appSettings.apiUrl += '/';
|
|
1250
|
+
}
|
|
1248
1251
|
return {
|
|
1249
1252
|
ngModule: IndiginaModule,
|
|
1250
1253
|
providers: [
|
|
@@ -3185,6 +3188,9 @@
|
|
|
3185
3188
|
function KendoModule() {
|
|
3186
3189
|
}
|
|
3187
3190
|
KendoModule.forRoot = function (config) {
|
|
3191
|
+
if (!config.appSettings.apiUrl.endsWith('/')) {
|
|
3192
|
+
config.appSettings.apiUrl += '/';
|
|
3193
|
+
}
|
|
3188
3194
|
return {
|
|
3189
3195
|
ngModule: KendoModule,
|
|
3190
3196
|
providers: [
|