We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3037a4d commit bc3fdaaCopy full SHA for bc3fdaa
src/slick.js
@@ -81,7 +81,7 @@ angular
81
centerPadding: scope.centerPadding || '50px',
82
cssEase: scope.cssEase || 'ease',
83
customPaging: attr.customPaging ? customPaging : void 0,
84
- dots: scope.dots === 'true',
+ dots: attr.dots || scope.dots === 'true',
85
draggable: scope.draggable !== 'false',
86
fade: scope.fade === 'true',
87
focusOnSelect: scope.focusOnSelect === 'true',
@@ -96,7 +96,7 @@ angular
96
respondTo: scope.respondTo != null ? scope.respondTo : 'window',
97
responsive: scope.responsive || void 0,
98
rows: scope.rows != null ? parseInt(scope.rows, 10) : 1,
99
- slide: scope.slide || 'div',
+ slide: scope.slide || '',
100
slidesPerRow: scope.slidesPerRow != null ? parseInt(scope.slidesPerRow, 10) : 1,
101
slidesToShow: scope.slidesToShow != null ? parseInt(scope.slidesToShow, 10) : 1,
102
slidesToScroll: scope.slidesToScroll != null ? parseInt(scope.slidesToScroll, 10) : 1,
0 commit comments