diff --git a/src/datepicker/docs/demo.html b/src/datepicker/docs/demo.html
index 0d5cf1b9a3..0f96d634d6 100644
--- a/src/datepicker/docs/demo.html
+++ b/src/datepicker/docs/demo.html
@@ -15,33 +15,7 @@
Inline
-
-
-
- Popup
-
-
-
-
-
+
diff --git a/src/datepicker/docs/demo.js b/src/datepicker/docs/demo.js
index c1faa5aebf..2473d9b885 100644
--- a/src/datepicker/docs/demo.js
+++ b/src/datepicker/docs/demo.js
@@ -8,20 +8,12 @@ angular.module('ui.bootstrap.demo').controller('DatepickerDemoCtrl', function ($
$scope.dt = null;
};
- $scope.inlineOptions = {
+ $scope.options = {
customClass: getDayClass,
minDate: new Date(),
showWeeks: true
};
- $scope.dateOptions = {
- dateDisabled: disabled,
- formatYear: 'yy',
- maxDate: new Date(2020, 5, 22),
- minDate: new Date(),
- startingDay: 1
- };
-
// Disable weekend selection
function disabled(data) {
var date = data.date,
@@ -30,36 +22,15 @@ angular.module('ui.bootstrap.demo').controller('DatepickerDemoCtrl', function ($
}
$scope.toggleMin = function() {
- $scope.inlineOptions.minDate = $scope.inlineOptions.minDate ? null : new Date();
- $scope.dateOptions.minDate = $scope.inlineOptions.minDate;
+ $scope.options.minDate = $scope.options.minDate ? null : new Date();
};
$scope.toggleMin();
- $scope.open1 = function() {
- $scope.popup1.opened = true;
- };
-
- $scope.open2 = function() {
- $scope.popup2.opened = true;
- };
-
$scope.setDate = function(year, month, day) {
$scope.dt = new Date(year, month, day);
};
- $scope.formats = ['dd-MMMM-yyyy', 'yyyy/MM/dd', 'dd.MM.yyyy', 'shortDate'];
- $scope.format = $scope.formats[0];
- $scope.altInputFormats = ['M!/d!/yyyy'];
-
- $scope.popup1 = {
- opened: false
- };
-
- $scope.popup2 = {
- opened: false
- };
-
var tomorrow = new Date();
tomorrow.setDate(tomorrow.getDate() + 1);
var afterTomorrow = new Date(tomorrow);