You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2021. It is now read-only.
* Optional. The name of a drawable resource to use as the small-icon. The name should not include the extension.
11
+
*/
12
+
private$icon;
13
+
14
+
/**
15
+
* @var string
16
+
* Required. The label to display for the action button.
17
+
*/
18
+
private$title;
19
+
20
+
/**
21
+
* @var string
22
+
* Required. The function to be executed or the event to be emitted when the action button is pressed. The function must be accessible from the global namespace. If you provide myCallback then it amounts to calling window.myCallback. If you provide app.myCallback then there needs to be an object call app, with a function called myCallback accessible from the global namespace, i.e. window.app.myCallback. If there isn't a function with the specified name an event will be emitted with the callback name.
23
+
*/
24
+
private$callback;
25
+
26
+
/**
27
+
* @var boolean
28
+
* Optional. Whether or not to bring the app to the foreground when the action button is pressed. (Default true)
29
+
*/
30
+
private$foreground;
31
+
32
+
/**
33
+
* @var boolean
34
+
* Optional. Whether or not to provide a quick reply text field to the user when the button is clicked. (Default false)
0 commit comments