~kai-mast/friends-app/new-postview

« back to all changes in this revision

Viewing changes to qml/FeedTab.qml

  • Committer: Kai Mast
  • Date: 2013-12-11 16:40:42 UTC
  • Revision ID: kai.mast@freakybytes.org-20131211164042-lvjik2fv7yg8k5tf
Fixed jumping to Top

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
Tab {
 
5
    property string stream
 
6
 
 
7
    function jumpToTop() {
 
8
        feed.jumpToTop()
 
9
    }
 
10
 
 
11
    Feed {
 
12
        anchors.fill: parent
 
13
 
 
14
        id: feed
 
15
        stream: parent.stream
 
16
    }
 
17
}