Skip to content

Commit

Permalink
http -> https
Browse files Browse the repository at this point in the history
  • Loading branch information
manolo committed Mar 9, 2017
1 parent 4fed1c8 commit fe84ec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h3>Basic Binding</h3>
<template>
<template is="dom-bind">
<!-- Fetch an array of users to be shown in the grid -->
<iron-ajax auto url="http://demo.vaadin.com/demo-data/1.0/people?count=200" handle-as="json" last-response="{{users}}"></iron-ajax>
<iron-ajax auto url="https://demo.vaadin.com/demo-data/1.0/people?count=200" handle-as="json" last-response="{{users}}"></iron-ajax>

<!-- The array is set as the <vaadin-grid>'s "items" property -->
<vaadin-grid aria-label="Basic Binding Example" items="[[users.result]]">
Expand Down Expand Up @@ -86,7 +86,7 @@ <h3>Two-Way Binding</h3>
font: inherit;
}
</style>
<iron-ajax auto url="http://demo.vaadin.com/demo-data/1.0/people?count=200" handle-as="json" last-response="{{users}}"></iron-ajax>
<iron-ajax auto url="https://demo.vaadin.com/demo-data/1.0/people?count=200" handle-as="json" last-response="{{users}}"></iron-ajax>

<paper-checkbox checked="{{editing}}" style="margin-bottom: 20px">Enable Editing</paper-checkbox>

Expand Down

0 comments on commit fe84ec5

Please sign in to comment.