Skip to content

Commit bf0c991

Browse files
authored
Merge pull request #1328 from JMCanning78/master
Fixed URL in OData Service demo
2 parents 40ddceb + 7bc4bd8 commit bf0c991

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
node_modules
44
dist
55
_site
6+
*~

demos/odata-service.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h1>OData Service</h1>
4444
var d = $.Deferred();
4545

4646
$.ajax({
47-
url: "http://services.odata.org/V3/(S(3mnweai3qldmghnzfshavfok))/OData/OData.svc/Products",
47+
url: "https://services.odata.org/V3/(S(3mnweai3qldmghnzfshavfok))/OData/OData.svc/Products",
4848
dataType: "json"
4949
}).done(function(response) {
5050
d.resolve(response.value);

0 commit comments

Comments
 (0)