~online-accounts/signon-ui/13.10

« back to all changes in this revision

Viewing changes to src/browser-process/DefaultPage.qml

  • Committer: Tarmac
  • Author(s): alberto.mardegan at canonical
  • Date: 2013-10-08 16:41:30 UTC
  • mfrom: (112.2.4 lp1231691)
  • Revision ID: tarmac-20131008164130-ksfasoeqkoius5v6
Let the client override the Page component.
. Fixes: https://bugs.launchpad.net/bugs/1231691.

Approved by PS Jenkins bot, Ken VanDine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import Ubuntu.Components 0.1
 
3
 
 
4
Page {
 
5
    Loader {
 
6
        id: loader
 
7
        anchors {
 
8
            top: parent.top
 
9
            left: parent.left
 
10
            right: parent.right
 
11
            bottom: osk.top
 
12
        }
 
13
        focus: true
 
14
        sourceComponent: browserComponent
 
15
    }
 
16
}