Skip to content

Commit 70ca2bc

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent ef2253c commit 70ca2bc

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docs-aspnet-core/getting-started/getting-started-copy-client-resources.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,13 @@ Refer to the article on [Bower package installation](../../kendo-ui/intro/instal
182182
183183
###### Example
184184

185-
jQuery = $ = require("jquery");
185+
import $ from 'jquery';
186+
window.jQuery = $; window.$ = $;
186187

187188
import "@progress/kendo-ui";
188189
import "@progress/kendo-ui/js/kendo.aspnetmvc";
189190
import "@progress/kendo-theme-default/dist/all.css";
190-
window.jQuery = window.$ = kendo.jQuery;
191+
191192

192193
1. Open the Command prompt and navigate to the folder of the project.
193194
1. Run the following commands:

docs/controls/scheduling/multiviewcalendar/multiple-views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In some scenarios it might be necessary to display more than two months. This is
3939
function click() {
4040
var numberOfViews = $("#numberOfViews").data().kendoNumericTextBox.value();
4141
if (numberOfViews > 0) {
42-
$("#multiViewCalendar").data().kendoMultiViewCalendar.setOptions({ numberOfVies: numberOfViews });
42+
$("#multiViewCalendar").data().kendoMultiViewCalendar.setOptions({ views: numberOfViews });
4343
}
4444
}
4545
</script>

0 commit comments

Comments
 (0)