@@ -9,7 +9,7 @@ describe('timepicker directive', function() {
9
9
$rootScope . time = newTime ( 14 , 40 , 25 ) ;
10
10
$templateCache = _$templateCache_ ;
11
11
12
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $rootScope ) ;
12
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $rootScope ) ;
13
13
$rootScope . $digest ( ) ;
14
14
15
15
modelCtrl = element . controller ( 'ngModel' ) ;
@@ -130,7 +130,7 @@ describe('timepicker directive', function() {
130
130
131
131
it ( 'has `selected` current time when model is initially cleared' , function ( ) {
132
132
$rootScope . time = null ;
133
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $rootScope ) ;
133
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $rootScope ) ;
134
134
$rootScope . $digest ( ) ;
135
135
136
136
expect ( $rootScope . time ) . toBe ( null ) ;
@@ -385,7 +385,7 @@ describe('timepicker directive', function() {
385
385
} ) ;
386
386
387
387
it ( 'changes only the time part when minutes change' , function ( ) {
388
- element = $compile ( '<uib-timepicker ng-model="time" minute-step="15"></uib-timepicker >' ) ( $rootScope ) ;
388
+ element = $compile ( '<div uib-timepicker ng-model="time" minute-step="15"></div >' ) ( $rootScope ) ;
389
389
$rootScope . time = newTime ( 0 , 0 , 0 ) ;
390
390
$rootScope . $digest ( ) ;
391
391
@@ -648,7 +648,7 @@ describe('timepicker directive', function() {
648
648
$rootScope . mstep = 30 ;
649
649
$rootScope . sstep = 30 ;
650
650
$rootScope . time = newTime ( 14 , 0 , 0 ) ;
651
- element = $compile ( '<uib-timepicker ng-model="time" hour-step="hstep" minute-step="mstep" second-step="sstep"></uib-timepicker >' ) ( $rootScope ) ;
651
+ element = $compile ( '<div uib-timepicker ng-model="time" hour-step="hstep" minute-step="mstep" second-step="sstep"></div >' ) ( $rootScope ) ;
652
652
$rootScope . $digest ( ) ;
653
653
} ) ;
654
654
@@ -840,7 +840,7 @@ describe('timepicker directive', function() {
840
840
beforeEach ( function ( ) {
841
841
$rootScope . displaysSeconds = false ;
842
842
$rootScope . time = newTime ( 14 , 40 , 35 ) ;
843
- element = $compile ( '<uib-timepicker ng-model="time" show-seconds="displaysSeconds"></uib-timepicker >' ) ( $rootScope ) ;
843
+ element = $compile ( '<div uib-timepicker ng-model="time" show-seconds="displaysSeconds"></div >' ) ( $rootScope ) ;
844
844
$rootScope . $digest ( ) ;
845
845
} ) ;
846
846
@@ -914,7 +914,7 @@ describe('timepicker directive', function() {
914
914
beforeEach ( function ( ) {
915
915
$rootScope . meridian = false ;
916
916
$rootScope . time = newTime ( 14 , 10 , 20 ) ;
917
- element = $compile ( '<uib-timepicker ng-model="time" show-meridian="meridian"></uib-timepicker >' ) ( $rootScope ) ;
917
+ element = $compile ( '<div uib-timepicker ng-model="time" show-meridian="meridian"></div >' ) ( $rootScope ) ;
918
918
$rootScope . $digest ( ) ;
919
919
} ) ;
920
920
@@ -946,7 +946,7 @@ describe('timepicker directive', function() {
946
946
947
947
it ( 'handles correctly initially empty model on parent element' , function ( ) {
948
948
$rootScope . time = null ;
949
- element = $compile ( '<span ng-model="time"><uib-timepicker show-meridian="meridian"></uib-timepicker ></span>' ) ( $rootScope ) ;
949
+ element = $compile ( '<span ng-model="time"><div uib-timepicker show-meridian="meridian"></div ></span>' ) ( $rootScope ) ;
950
950
$rootScope . $digest ( ) ;
951
951
952
952
expect ( $rootScope . time ) . toBe ( null ) ;
@@ -956,7 +956,7 @@ describe('timepicker directive', function() {
956
956
describe ( '`meridians` attribute' , function ( ) {
957
957
beforeEach ( inject ( function ( ) {
958
958
$rootScope . meridiansArray = [ 'am' , 'pm' ] ;
959
- element = $compile ( '<uib-timepicker ng-model="time" meridians="meridiansArray"></uib-timepicker >' ) ( $rootScope ) ;
959
+ element = $compile ( '<div uib-timepicker ng-model="time" meridians="meridiansArray"></div >' ) ( $rootScope ) ;
960
960
$rootScope . $digest ( ) ;
961
961
} ) ) ;
962
962
@@ -974,7 +974,7 @@ describe('timepicker directive', function() {
974
974
describe ( '`readonly-input` attribute' , function ( ) {
975
975
beforeEach ( inject ( function ( ) {
976
976
$rootScope . meridiansArray = [ 'am' , 'pm' ] ;
977
- element = $compile ( '<uib-timepicker ng-model="time" readonly-input="true"></uib-timepicker >' ) ( $rootScope ) ;
977
+ element = $compile ( '<div uib-timepicker ng-model="time" readonly-input="true"></div >' ) ( $rootScope ) ;
978
978
$rootScope . $digest ( ) ;
979
979
} ) ) ;
980
980
@@ -993,7 +993,7 @@ describe('timepicker directive', function() {
993
993
}
994
994
995
995
it ( 'should pad the hours by default' , function ( ) {
996
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $rootScope ) ;
996
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $rootScope ) ;
997
997
$rootScope . $digest ( ) ;
998
998
999
999
var inputs = element . find ( 'input' ) ;
@@ -1005,7 +1005,7 @@ describe('timepicker directive', function() {
1005
1005
} ) ;
1006
1006
1007
1007
it ( 'should not pad the hours' , function ( ) {
1008
- element = $compile ( '<uib-timepicker ng-model="time" pad-hours="false"></uib-timepicker >' ) ( $rootScope ) ;
1008
+ element = $compile ( '<div uib-timepicker ng-model="time" pad-hours="false"></div >' ) ( $rootScope ) ;
1009
1009
$rootScope . $digest ( ) ;
1010
1010
1011
1011
var inputs = element . find ( 'input' ) ;
@@ -1025,7 +1025,7 @@ describe('timepicker directive', function() {
1025
1025
uibTimepickerConfig . minuteStep = 10 ;
1026
1026
uibTimepickerConfig . secondStep = 10 ;
1027
1027
uibTimepickerConfig . showMeridian = false ;
1028
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $rootScope ) ;
1028
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $rootScope ) ;
1029
1029
$rootScope . $digest ( ) ;
1030
1030
} ) ) ;
1031
1031
@@ -1086,7 +1086,7 @@ describe('timepicker directive', function() {
1086
1086
angular . extend ( originalConfig , uibTimepickerConfig ) ;
1087
1087
uibTimepickerConfig . meridians = [ 'π.μ.' , 'μ.μ.' ] ;
1088
1088
uibTimepickerConfig . showMeridian = true ;
1089
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $rootScope ) ;
1089
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $rootScope ) ;
1090
1090
$rootScope . $digest ( ) ;
1091
1091
} ) ) ;
1092
1092
afterEach ( inject ( function ( uibTimepickerConfig ) {
@@ -1116,7 +1116,7 @@ describe('timepicker directive', function() {
1116
1116
$templateCache . put ( newTemplateUrl , '<div>baz</div>' ) ;
1117
1117
uibTimepickerConfig . templateUrl = newTemplateUrl ;
1118
1118
1119
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $rootScope ) ;
1119
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $rootScope ) ;
1120
1120
$rootScope . $digest ( ) ;
1121
1121
} ) ) ;
1122
1122
afterEach ( inject ( function ( uibTimepickerConfig ) {
@@ -1126,7 +1126,7 @@ describe('timepicker directive', function() {
1126
1126
1127
1127
it ( 'should use a custom template' , function ( ) {
1128
1128
expect ( element [ 0 ] . tagName . toLowerCase ( ) ) . toBe ( 'div' ) ;
1129
- expect ( element . html ( ) ) . toBe ( 'baz' ) ;
1129
+ expect ( element . html ( ) ) . toBe ( '<div> baz</div> ' ) ;
1130
1130
} ) ;
1131
1131
} ) ;
1132
1132
@@ -1328,7 +1328,7 @@ describe('timepicker directive', function() {
1328
1328
1329
1329
it ( 'handles 12/24H mode change' , function ( ) {
1330
1330
$rootScope . meridian = true ;
1331
- element = $compile ( '<uib-timepicker ng-model="time" show-meridian="meridian"></uib-timepicker >' ) ( $rootScope ) ;
1331
+ element = $compile ( '<div uib-timepicker ng-model="time" show-meridian="meridian"></div >' ) ( $rootScope ) ;
1332
1332
$rootScope . $digest ( ) ;
1333
1333
1334
1334
var el = getHoursInputEl ( ) ;
@@ -1346,14 +1346,14 @@ describe('timepicker directive', function() {
1346
1346
} ) ;
1347
1347
1348
1348
it ( 'should have a default tabindex of 0' , function ( ) {
1349
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $rootScope ) ;
1349
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $rootScope ) ;
1350
1350
$rootScope . $digest ( ) ;
1351
1351
1352
1352
expect ( element . isolateScope ( ) . tabindex ) . toBe ( 0 ) ;
1353
1353
} ) ;
1354
1354
1355
1355
it ( 'should have the correct tabindex' , function ( ) {
1356
- element = $compile ( '<uib-timepicker ng-model="time" tabindex="5"></uib-timepicker >' ) ( $rootScope ) ;
1356
+ element = $compile ( '<div uib-timepicker ng-model="time" tabindex="5"></div >' ) ( $rootScope ) ;
1357
1357
$rootScope . $digest ( ) ;
1358
1358
1359
1359
expect ( element . attr ( 'tabindex' ) ) . toBe ( undefined ) ;
@@ -1363,7 +1363,7 @@ describe('timepicker directive', function() {
1363
1363
1364
1364
describe ( 'when model is not a Date' , function ( ) {
1365
1365
beforeEach ( inject ( function ( ) {
1366
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $rootScope ) ;
1366
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $rootScope ) ;
1367
1367
} ) ) ;
1368
1368
1369
1369
it ( 'should not be invalid when the model is null' , function ( ) {
@@ -1415,7 +1415,7 @@ describe('timepicker directive', function() {
1415
1415
describe ( 'use with `ng-required` directive' , function ( ) {
1416
1416
beforeEach ( inject ( function ( ) {
1417
1417
$rootScope . time = null ;
1418
- element = $compile ( '<uib-timepicker ng-model="time" ng-required="true"></uib-timepicker >' ) ( $rootScope ) ;
1418
+ element = $compile ( '<div uib-timepicker ng-model="time" ng-required="true"></div >' ) ( $rootScope ) ;
1419
1419
$rootScope . $digest ( ) ;
1420
1420
} ) ) ;
1421
1421
@@ -1434,7 +1434,7 @@ describe('timepicker directive', function() {
1434
1434
beforeEach ( inject ( function ( ) {
1435
1435
$rootScope . changeHandler = jasmine . createSpy ( 'changeHandler' ) ;
1436
1436
$rootScope . time = new Date ( ) ;
1437
- element = $compile ( '<uib-timepicker ng-model="time" ng-change="changeHandler()"></uib-timepicker >' ) ( $rootScope ) ;
1437
+ element = $compile ( '<div uib-timepicker ng-model="time" ng-change="changeHandler()"></div >' ) ( $rootScope ) ;
1438
1438
$rootScope . $digest ( ) ;
1439
1439
} ) ) ;
1440
1440
@@ -1465,7 +1465,7 @@ describe('timepicker directive', function() {
1465
1465
describe ( 'when used with min' , function ( ) {
1466
1466
var changeInputValueTo ;
1467
1467
beforeEach ( inject ( function ( $sniffer ) {
1468
- element = $compile ( '<uib-timepicker ng-model="time" min="min"></uib-timepicker >' ) ( $rootScope ) ;
1468
+ element = $compile ( '<div uib-timepicker ng-model="time" min="min"></div >' ) ( $rootScope ) ;
1469
1469
$rootScope . $digest ( ) ;
1470
1470
changeInputValueTo = function ( inputEl , value ) {
1471
1471
inputEl . val ( value ) ;
@@ -1792,7 +1792,7 @@ describe('timepicker directive', function() {
1792
1792
describe ( 'when used with max' , function ( ) {
1793
1793
var changeInputValueTo ;
1794
1794
beforeEach ( inject ( function ( $sniffer ) {
1795
- element = $compile ( '<uib-timepicker ng-model="time" max="max"></uib-timepicker >' ) ( $rootScope ) ;
1795
+ element = $compile ( '<div uib-timepicker ng-model="time" max="max"></div >' ) ( $rootScope ) ;
1796
1796
$rootScope . $digest ( ) ;
1797
1797
changeInputValueTo = function ( inputEl , value ) {
1798
1798
inputEl . val ( value ) ;
@@ -2121,16 +2121,16 @@ describe('timepicker directive', function() {
2121
2121
it ( 'should allow custom templates' , function ( ) {
2122
2122
$templateCache . put ( 'foo/bar.html' , '<div>baz</div>' ) ;
2123
2123
2124
- element = $compile ( '<uib-timepicker ng-model="time" template-url="foo/bar.html"></uib-timepicker >' ) ( $rootScope ) ;
2124
+ element = $compile ( '<div uib-timepicker ng-model="time" template-url="foo/bar.html"></div >' ) ( $rootScope ) ;
2125
2125
$rootScope . $digest ( ) ;
2126
2126
expect ( element [ 0 ] . tagName . toLowerCase ( ) ) . toBe ( 'div' ) ;
2127
- expect ( element . html ( ) ) . toBe ( 'baz' ) ;
2127
+ expect ( element . html ( ) ) . toBe ( '<div> baz</div> ' ) ;
2128
2128
} ) ;
2129
2129
2130
2130
it ( 'should expose the controller on the view' , function ( ) {
2131
2131
$templateCache . put ( 'uib/template/timepicker/timepicker.html' , '<div><div>{{timepicker.text}}</div></div>' ) ;
2132
2132
2133
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $rootScope ) ;
2133
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $rootScope ) ;
2134
2134
$rootScope . $digest ( ) ;
2135
2135
2136
2136
var ctrl = element . controller ( 'uibTimepicker' ) ;
@@ -2139,14 +2139,14 @@ describe('timepicker directive', function() {
2139
2139
ctrl . text = 'foo' ;
2140
2140
$rootScope . $digest ( ) ;
2141
2141
2142
- expect ( element . html ( ) ) . toBe ( '<div class="ng-binding">foo</div>' ) ;
2142
+ expect ( element . html ( ) ) . toBe ( '<div><div class="ng-binding">foo</div> </div>' ) ;
2143
2143
} ) ;
2144
2144
} ) ;
2145
2145
2146
2146
describe ( 'ngDisabled' , function ( ) {
2147
2147
it ( 'prevents modifying date via controls when true' , function ( ) {
2148
2148
$rootScope . disabled = false ;
2149
- element = $compile ( '<uib-timepicker ng-model="time" ng-disabled="disabled"></uib-timepicker ' ) ( $rootScope ) ;
2149
+ element = $compile ( '<div uib-timepicker ng-model="time" ng-disabled="disabled"></div> ' ) ( $rootScope ) ;
2150
2150
$rootScope . $digest ( ) ;
2151
2151
2152
2152
var inputs = element . find ( 'input' ) ;
@@ -2250,7 +2250,7 @@ describe('timepicker directive', function() {
2250
2250
var $scope ;
2251
2251
beforeEach ( inject ( function ( ) {
2252
2252
$scope = $rootScope . $new ( ) ;
2253
- element = $compile ( '<uib-timepicker ng-model="time"></uib-timepicker >' ) ( $scope ) ;
2253
+ element = $compile ( '<div uib-timepicker ng-model="time"></div >' ) ( $scope ) ;
2254
2254
$rootScope . $digest ( ) ;
2255
2255
} ) ) ;
2256
2256
0 commit comments