~phablet-team/webbrowser-app/trunk

« back to all changes in this revision

Viewing changes to src/app/webcontainer/ContextMenuMobile.qml

  • Committer: Bileto Bot
  • Date: 2016-12-02 08:37:55 UTC
  • mfrom: (1549.7.19 staging-20161130)
  • Revision ID: ci-train-bot@canonical.com-20161202083755-d4zyar02ta0ic3g2
* Ensure if the webview changes that the loading visible state of the
  progress bar is bound to the correct webview (LP: #1638337)
* Additional autopilot tests
* Add dependencies on qtdeclarative5-ubuntu-content1 and
  qtdeclarative5-ubuntu-download-manager0.1 as they are now in main
  (LP: #1491279)
* Add Drag and drop support of tabs between windows on non-mir clients
* Add a desktop UA override for ESPN websites (LP: #1637285)
* Add user agent overrides for meet.jit.si (LP: #1635971)
* Make QmlTests::UbuntuWebView02::test_no_contextual_actions() more
  robust (LP: #1633528)
* Run unit tests with verbose output by default when building packages
* Do not transfer keyboard focus from the address bar to the new tab
  view in incognito mode (LP: #1634463)
* Use new API in oxide 1.17 to copy image to clipboard (LP: #1585291)
* Use the ubuntu-app-platform content interface
* Desktop UA override for google docs (LP: #1643386)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import com.canonical.Oxide 1.8 as Oxide
24
24
 
25
25
Popups.Dialog {
 
26
    id: contextMenu
 
27
 
26
28
    property QtObject contextModel: model
27
29
    property ActionList actions: null
28
30
 
121
123
                }
122
124
            }
123
125
 
124
 
            onTriggered: contextModel.close()
 
126
            onTriggered: contextMenu.hide()
125
127
        }
126
128
    }
127
129
 
140
142
            fontSize: "x-small"
141
143
            text: i18n.tr("Cancel")
142
144
        }
143
 
        onTriggered: contextModel.close()
 
145
        onTriggered: contextMenu.hide()
 
146
    }
 
147
 
 
148
    onVisibleChanged: {
 
149
        if (!visible) {
 
150
            contextModel.close()
 
151
        }
144
152
    }
145
153
 
146
154
    // adjust default dialog visuals to custom requirements for the context menu