Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / native_client_sdk / src / examples / demo / pi_generator / example.js
blob0afee49e50388c5bd1f76d472f7f745d1738ae16
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Handle a message coming from the NaCl module.  The message payload is
6 // assumed to contain the current estimated value of Pi.  Update the Pi
7 // text display with this value.
8 function handleMessage(message_event) {
9   document.getElementById('pi').value = message_event.data;