| Index: ppapi/examples/scripting/post_message.html
|
| diff --git a/ppapi/examples/scripting/post_message.html b/ppapi/examples/scripting/post_message.html
|
| index 46e0c347173f2958df4c0cc69a36b3906e63c504..19023f31b0817b0be9b3cd126b2e4685307617a4 100644
|
| --- a/ppapi/examples/scripting/post_message.html
|
| +++ b/ppapi/examples/scripting/post_message.html
|
| @@ -10,11 +10,8 @@
|
| <script>
|
|
|
| function HandleMessage(message_event) {
|
| - if (message_event.data) {
|
| - alert("The string was a palindrome.");
|
| - } else {
|
| - alert("The string was not a palindrome.");
|
| - }
|
| + console.log("Received:");
|
| + console.log(message_event.data);
|
| }
|
|
|
| function AddListener() {
|
|
|