forked from microsoft/Windows-universal-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Windows 10 1511 Release - July 2016 Update 2
- Loading branch information
Showing
27 changed files
with
232 additions
and
449 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
// Create contact object with small set of initial data to display. | ||
var contact = new Contact(); | ||
contact.firstName = "Kim"; | ||
contact.LlstName = "Abercrombie"; | ||
contact.lastName = "Abercrombie"; | ||
|
||
var email = new ContactEmail(); | ||
email.address = "[email protected]"; | ||
|
@@ -104,21 +104,25 @@ | |
|
||
var dataLoader = ContactManager.showDelayLoadedContactCard(contact, rect, placement, options); | ||
|
||
// Simulate downloading more data from the network for the contact. | ||
WinJS.log && WinJS.log("Simulating download...", "sample", "status"); | ||
|
||
downloadContactDataAsync(contact).then(function (fullContact) { | ||
if (fullContact) { | ||
// Update the contact card with the full set of contact data. | ||
dataLoader.setData(fullContact); | ||
WinJS.log && WinJS.log("Contact has been updated with downloaded data.", "sample", "status"); | ||
} else { | ||
WinJS.log && WinJS.log("No further information available.", "sample", "status"); | ||
} | ||
|
||
// Close the object to indicate that the delay-loading operation has completed. | ||
dataLoader.close(); | ||
}); | ||
if (dataLoader) { | ||
// Simulate downloading more data from the network for the contact. | ||
WinJS.log && WinJS.log("Simulating download...", "sample", "status"); | ||
|
||
downloadContactDataAsync(contact).then(function (fullContact) { | ||
if (fullContact) { | ||
// Update the contact card with the full set of contact data. | ||
dataLoader.setData(fullContact); | ||
WinJS.log && WinJS.log("Contact has been updated with downloaded data.", "sample", "status"); | ||
} else { | ||
WinJS.log && WinJS.log("No further information available.", "sample", "status"); | ||
} | ||
|
||
// Close the object to indicate that the delay-loading operation has completed. | ||
dataLoader.close(); | ||
}); | ||
} else { | ||
WinJS.log && WinJS.log("ShowDelayLoadedContactCard is not supported by this device.", "sample", "error"); | ||
} | ||
} | ||
|
||
})(); |
2 changes: 1 addition & 1 deletion
2
Samples/VideoPlayback/common/Assets/Media/ElephantsDream-Clip-SRT_pt.srt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
1 | ||
1 | ||
00:00:8,037 --> 00:00:9,494 | ||
magoaste-te? | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
Samples/VideoPlayback/common/Assets/Media/ElephantsDream-Clip-SRT_sv.srt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
1 | ||
1 | ||
00:00:8,037 --> 00:00:9,494 | ||
Är du skadad? | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.