diff --git a/js/ext/angular/test/actionSheet.html b/js/ext/angular/test/actionSheet.html
index 7cc0e84592..8e5e417d83 100644
--- a/js/ext/angular/test/actionSheet.html
+++ b/js/ext/angular/test/actionSheet.html
@@ -13,12 +13,7 @@
}
-
-
-
-
-
-
+
diff --git a/js/ext/angular/test/anchorScroll.html b/js/ext/angular/test/anchorScroll.html
index 037cda4a6e..1f9191311e 100644
--- a/js/ext/angular/test/anchorScroll.html
+++ b/js/ext/angular/test/anchorScroll.html
@@ -6,12 +6,7 @@
-
-
-
-
-
-
+
diff --git a/js/ext/angular/test/carousel.html b/js/ext/angular/test/carousel.html
index 8d062787e2..5567d8ab05 100644
--- a/js/ext/angular/test/carousel.html
+++ b/js/ext/angular/test/carousel.html
@@ -6,12 +6,7 @@
-
-
-
-
-
-
+
-
-
-
-
-
-
+
-
-
-
-
-
-
+
@@ -78,15 +73,15 @@
Radio
{{ radioItem.text }}
- Selected Radio Value: {{ selectedValues.radio }},
- Changed: {{ radioChangeCount }},
+ Selected Radio Value: {{ selectedValues.radio }},
+ Changed: {{ radioChangeCount }},
Watch Count: {{ radioWatchCount }}
@@ -119,7 +114,7 @@
.controller('MyCtrl', function($scope) {
$scope.value1 = true;
$scope.value2 = 'NO';
-
+
$scope.checkboxChange = function() {
$scope.value4ChangeValue = 'Random number: ' + Math.floor(Math.random() * 1000);
};
@@ -128,7 +123,7 @@
$scope.toggle4ChangeValue = 'Random number: ' + Math.floor(Math.random() * 1000);
};
- $scope.radioItems = [
+ $scope.radioItems = [
{ text: 'Green Back Packers', value: 'packers' },
{ text: 'Minnesota Vikings', value: 'vikings' },
{ text: 'Chicago Bears', value: 'bears' },
@@ -139,7 +134,7 @@
$scope.radioChanged = function() {
$scope.radioChangeCount++;
};
-
+
$scope.radioWatchCount = 0;
$scope.$watch('selectedValues.radio', function(val) {
$scope.radioWatchCount++;
@@ -150,4 +145,4 @@
-