~josephjamesmills/mythbuntu/mythtv-qml

« back to all changes in this revision

Viewing changes to programs/build-Mythbuntu-QML-Desktop-Debug/qml/Mythbuntu-QML/themes/UbuntuSDK/MythWeb.qml

  • Committer: Joseph Mills
  • Date: 2013-07-10 17:59:50 UTC
  • Revision ID: josephjamesmills@gmail.com-20130710175950-3xye623izda9ro1b
autopush for help with zeroconf 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import QtWebKit 3.0
 
3
import QtQuick.LocalStorage 2.0
 
4
import "ubuntu/components"
 
5
import "../../common/dbUtil.js" as DataBase
 
6
Rectangle {
 
7
    id: rootTangle
 
8
    color: "#66000000"
 
9
    width: parent.width
 
10
    height: parent.height
 
11
    WebView{
 
12
        id: huluWeb
 
13
        width: rootTangle.width
 
14
        height: rootTangle.height
 
15
        url: DataBase.ipAddress()+"/mythweb"
 
16
//        smooth: true
 
17
    }
 
18
}
 
19
 
 
20