Skip to content

Commit 0a74a86

Browse files
Zhuk, AlexanderZhuk, Alexander
authored andcommitted
changing http to https in JSON urls
1 parent 3c42a0e commit 0a74a86

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

demo/100k/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div>
2222
<h3>Angular Data Grid 100k Example</h3>
2323
This demonstrates client-side sorting / pagination / filtering performance of the data grid with <strong>100 000 rows</strong> loaded at once.
24-
It's not likely that someone will need to operate so huge data at client side in a real life, but for performance testing purposes it definitely works)
24+
It's not likely that someone will need to operate so huge data at client side in real life, but for performance testing purposes it definitely works.
2525
<a href="https://github.com/angular-data-grid/angular-data-grid.github.io" target="_blank">Project GitHub</a>
2626
</div>
2727
<hr>

demo/100k/js/demoApp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
$http({
1313
method: 'GET',
14-
url: 'http://angular-data-grid.github.io/demo/100k.json'
14+
url: 'https://angular-data-grid.github.io/demo/100k.json'
1515
}).then(function successCallback(response) {
1616
$scope.gridOptions.data = response.data;
1717
});

demo/bootstrap/js/demoApp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ angular.module('myApp', ['ui.bootstrap', 'dataGrid', 'pagination'])
1616
getData: function () {
1717
return $http({
1818
method: 'GET',
19-
url: 'http://angular-data-grid.github.io/demo/data.json'
19+
url: 'https://angular-data-grid.github.io/demo/data.json'
2020
});
2121
}
2222
}

demo/material/js/demoApp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ angular.module('myApp', ['dataGrid', 'pagination', 'ngMaterial'])
1515
getData: function () {
1616
return $http({
1717
method: 'GET',
18-
url: 'http://angular-data-grid.github.io/demo/data.json'
18+
url: 'https://angular-data-grid.github.io/demo/data.json'
1919
});
2020
}
2121
}

0 commit comments

Comments
 (0)