[angular-ui] Upgraded ui bootstrap. Fixed test with calendar

This commit is contained in:
Khalah Jones-Golden 2015-10-22 18:25:14 -04:00
parent 404694fe6b
commit b69d2fa7d7
2 changed files with 3 additions and 3 deletions

View file

@ -55,7 +55,7 @@
"url": "https://github.com/elastic/kibana.git"
},
"dependencies": {
"@spalger/angular-bootstrap": "0.10.0",
"@spalger/angular-bootstrap": "0.12.1",
"@spalger/filesaver": "1.1.2",
"@spalger/leaflet-draw": "0.2.3",
"@spalger/leaflet-heat": "0.1.3",

View file

@ -369,8 +369,8 @@ describe('timepicker directive', function () {
inputs = {
fromInput: $elem.find('.kbn-timepicker-section input[ng-model="absolute.from"]'),
toInput: $elem.find('.kbn-timepicker-section input[ng-model="absolute.to"]'),
fromCalendar: $elem.find('.kbn-timepicker-section table[ng-model="absolute.from"] '),
toCalendar: $elem.find('.kbn-timepicker-section table[ng-model="absolute.to"] '),
fromCalendar: $elem.find('.kbn-timepicker-section div[ng-model="absolute.from"] '),
toCalendar: $elem.find('.kbn-timepicker-section div[ng-model="absolute.to"] '),
};
});