@@ -25,7 +25,7 @@ Toggles the border of the widget.
2525 items: [
2626 { text: "Home", icon: "home" },
2727 { text: "Info", icon: "info-circle" },
28- { text: "Contact", icon: "envelop " }
28+ { text: "Contact", icon: "envelope " }
2929 ]
3030 });
3131 </script>
@@ -44,7 +44,7 @@ Toggles the shadow of the widget.
4444 items: [
4545 { text: "Home", icon: "home" },
4646 { text: "Info", icon: "info-circle" },
47- { text: "Contact", icon: "envelop " }
47+ { text: "Contact", icon: "envelope " }
4848 ]
4949 });
5050 </script>
@@ -63,7 +63,7 @@ Specifies which fillMode is applied to the BottomNavigation. Valid options are `
6363 items: [
6464 { text: "Home", icon: "home" },
6565 { text: "Info", icon: "info-circle" },
66- { text: "Contact", icon: "envelop " }
66+ { text: "Contact", icon: "envelope " }
6767 ]
6868 });
6969 </script>
@@ -82,7 +82,7 @@ Sets the position of the text label. Valid options are `vertical` and `horizonta
8282 items: [
8383 { text: "Home", icon: "home" },
8484 { text: "Info", icon: "info-circle" },
85- { text: "Contact", icon: "envelop " }
85+ { text: "Contact", icon: "envelope " }
8686 ]
8787 });
8888 </script>
@@ -114,7 +114,7 @@ Specifies the theme color of the component. Valid options are:
114114 items: [
115115 { text: "Home", icon: "home" },
116116 { text: "Info", icon: "info-circle" },
117- { text: "Contact", icon: "envelop " }
117+ { text: "Contact", icon: "envelope " }
118118 ]
119119 });
120120 </script>
@@ -132,7 +132,7 @@ Specifies the items of the BottomNavigation component.
132132 items: [
133133 { text: "Home", icon: "home" },
134134 { text: "Info", icon: "info-circle" },
135- { text: "Contact", icon: "envelop " }
135+ { text: "Contact", icon: "envelope " }
136136 ]
137137 });
138138 </script>
@@ -150,7 +150,7 @@ The URL (href) to which the item will navigate to.
150150 items: [
151151 { text: "Home", icon: "home", url: "http://www.telerik.com" },
152152 { text: "Info", icon: "info-circle" },
153- { text: "Contact", icon: "envelop " }
153+ { text: "Contact", icon: "envelope " }
154154 ]
155155 });
156156 </script>
@@ -168,7 +168,7 @@ Contextual data to be used for events within the component.
168168 items: [
169169 { text: "Home", icon: "home", data: { view: "home" } },
170170 { text: "Info", icon: "info-circle", data: { view: "info" } },
171- { text: "Contact", icon: "envelop ", data: { view: "info" } }
171+ { text: "Contact", icon: "envelope ", data: { view: "info" } }
172172 ],
173173 select: function (ev) {
174174 alert(ev.data.view);
@@ -191,7 +191,7 @@ See [web font icons help article](/kendo-ui/styles-and-layout/icons-web) for mor
191191 items: [
192192 { text: "Home", icon: "home" },
193193 { text: "Info", icon: "info-circle" },
194- { text: "Contact", icon: "envelop " }
194+ { text: "Contact", icon: "envelope " }
195195 ]
196196 });
197197 </script>
@@ -209,7 +209,7 @@ The text of the item. It is optional - if not set, no text will be rendered.
209209 items: [
210210 { icon: "home" },
211211 { icon: "info-circle" },
212- { icon: "envelop " }
212+ { icon: "envelope " }
213213 ]
214214 });
215215 </script>
@@ -227,7 +227,7 @@ If false, the text will be able to render HTML.
227227 items: [
228228 { text: "<strong>Home</strong>", icon: "home", encoded: false },
229229 { text: "<strong>Info</strong>", icon: "info-circle", encoded: true },
230- { text: "Contact", icon: "envelop " }
230+ { text: "Contact", icon: "envelope " }
231231 ]
232232 });
233233 </script>
@@ -245,7 +245,7 @@ Defines the class name added to the icon element.
245245 items: [
246246 { text: "Home", icon: "home", iconClass: "my-icon-class" },
247247 { text: "Info", icon: "info-circle" },
248- { text: "Contact", icon: "envelop " }
248+ { text: "Contact", icon: "envelope " }
249249 ]
250250 });
251251 </script>
@@ -263,7 +263,7 @@ Defines the class names of the item's element.
263263 items: [
264264 { text: "Home", icon: "home", cssClass: "my-css-class" },
265265 { text: "Info", icon: "info-circle" },
266- { text: "Contact", icon: "envelop " }
266+ { text: "Contact", icon: "envelope " }
267267 ]
268268 });
269269 </script>
@@ -281,7 +281,7 @@ Defines custom attributes of the item's element.
281281 items: [
282282 { text: "Home", icon: "home", attributes: { "data-val" : "custom data attribute" } },
283283 { text: "Info", icon: "info-circle" },
284- { text: "Contact", icon: "envelop " }
284+ { text: "Contact", icon: "envelope " }
285285 ]
286286 });
287287 </script>
@@ -299,7 +299,7 @@ Toggles the enabled state of the item.
299299 items: [
300300 { text: "Home", icon: "home", enabled: false },
301301 { text: "Info", icon: "info-circle" },
302- { text: "Contact", icon: "envelop " }
302+ { text: "Contact", icon: "envelope " }
303303 ]
304304 });
305305 </script>
@@ -317,7 +317,7 @@ Toggles the selected state of the item.
317317 items: [
318318 { text: "Home", icon: "home", selected: true },
319319 { text: "Info", icon: "info-circle" },
320- { text: "Contact", icon: "envelop " }
320+ { text: "Contact", icon: "envelope " }
321321 ]
322322 });
323323 </script>
@@ -335,7 +335,7 @@ Sets a custom template for the item (overrides the `template` option).
335335 items: [
336336 { text: "Home", icon: "home", template: "<span>#:text#</span>" },
337337 { text: "Info", icon: "info-circle" },
338- { text: "Contact", icon: "envelop " }
338+ { text: "Contact", icon: "envelope " }
339339 ]
340340 });
341341 </script>
@@ -353,7 +353,7 @@ Sets a custom template for the items.
353353 items: [
354354 { text: "Home", icon: "home" },
355355 { text: "Info", icon: "info-circle" },
356- { text: "Contact", icon: "envelop " }
356+ { text: "Contact", icon: "envelope " }
357357 ],
358358 template: "<span>#:text#</span>"
359359 });
@@ -373,7 +373,7 @@ Specifies CSS position of the BottomNavigation in the document. Valid options ar
373373 items: [
374374 { text: "Home", icon: "home" },
375375 { text: "Info", icon: "info-circle" },
376- { text: "Contact", icon: "envelop " }
376+ { text: "Contact", icon: "envelope " }
377377 ]
378378 });
379379 </script>
@@ -405,7 +405,7 @@ Add item before an already existing item.
405405 ]
406406 }).data("kendoBottomNavigation");
407407
408- bottomNav.add({ text: "Contact", icon: "envelop ", attributes: { id: "email" } });
408+ bottomNav.add({ text: "Contact", icon: "envelope ", attributes: { id: "email" } });
409409 bottomNav.add({ text: "Info", icon: "info-circle" }, $("#email"));
410410 </script>
411411
@@ -433,7 +433,7 @@ Specifies the state of the element.
433433 items: [
434434 { text: "Home", icon: "home", enabled: false, attributes: { id: "home" } },
435435 { text: "Info", icon: "info-circle" },
436- { text: "Contact", icon: "envelop " }
436+ { text: "Contact", icon: "envelope " }
437437 ]
438438 }).data("kendoBottomNavigation");
439439
@@ -464,7 +464,7 @@ The zero-based index of the item.
464464 items: [
465465 { text: "Home", icon: "home", enabled: false },
466466 { text: "Info", icon: "info-circle" },
467- { text: "Contact", icon: "envelop " }
467+ { text: "Contact", icon: "envelope " }
468468 ]
469469 }).data("kendoBottomNavigation");
470470
@@ -495,7 +495,7 @@ The id of the item.
495495 items: [
496496 { text: "Home", icon: "home", enabled: false, attr: { id: "home" } },
497497 { text: "Info", icon: "info-circle" },
498- { text: "Contact", icon: "envelop " }
498+ { text: "Contact", icon: "envelope " }
499499 ]
500500 }).data("kendoBottomNavigation");
501501
@@ -520,7 +520,7 @@ Gets items' elements in a jQuery array.
520520 items: [
521521 { text: "Home", icon: "home" },
522522 { text: "Info", icon: "info-circle" },
523- { text: "Contact", icon: "envelop " }
523+ { text: "Contact", icon: "envelope " }
524524 ]
525525 }).data("kendoBottomNavigation");
526526
@@ -546,7 +546,7 @@ The element to be removed.
546546 items: [
547547 { text: "Home", icon: "home" },
548548 { text: "Info", icon: "info-circle" },
549- { text: "Contact", icon: "envelop " }
549+ { text: "Contact", icon: "envelope " }
550550 ]
551551 }).data("kendoBottomNavigation");
552552
@@ -581,7 +581,7 @@ Forces the selected state to the specified one.
581581 items: [
582582 { text: "Home", icon: "home" },
583583 { text: "Info", icon: "info-circle" },
584- { text: "Contact", icon: "envelop " }
584+ { text: "Contact", icon: "envelope " }
585585 ]
586586 }).data("kendoBottomNavigation");
587587
@@ -608,7 +608,7 @@ A bool value to toggle the visibility state of the text element.
608608 items: [
609609 { text: "Home", icon: "home" },
610610 { text: "Info", icon: "info-circle" },
611- { text: "Contact", icon: "envelop " }
611+ { text: "Contact", icon: "envelope " }
612612 ]
613613 }).data("kendoBottomNavigation");
614614
@@ -652,7 +652,7 @@ If invoked prevents the item selection.
652652 items: [
653653 { text: "Home", icon: "home", url: "http://www.telerik.com", data: { view: "home" } },
654654 { text: "Info", icon: "info-circle", data: { view: "info" } },
655- { text: "Contact", icon: "envelop ", data: { view: "email" } }
655+ { text: "Contact", icon: "envelope ", data: { view: "email" } }
656656 ],
657657 select: function (ev) {
658658 var data = ev.data;
0 commit comments