~rpadovani/reminders-app/translationsUpdate

« back to all changes in this revision

Viewing changes to src/app/qml/ui/reminders-scripts.js

  • Committer: Tarmac
  • Author(s): Riccardo Padovani
  • Date: 2014-07-17 13:37:51 UTC
  • mfrom: (166.1.9 upgrading-to-oxide)
  • Revision ID: tarmac-20140717133751-6shhvpu9gx2cw0jn
Upgraded the WebView to Oxide. Fixes: https://bugs.launchpad.net/bugs/1317580.

Approved by David Planella, Ubuntu Phone Apps Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
        message.type = "checkboxChanged";
6
6
        message.todoId = event.srcElement.id;
7
7
        message.checked = event.srcElement.checked;
8
 
        navigator.qt.postMessage(JSON.stringify(message));
 
8
        oxide.sendMessage('todo', message);
9
9
    }
10
10
}
11
11