{"id":20337745,"url":"https://github.com/nachoaguirre/framework7-feedback-plugin","last_synced_at":"2025-03-04T14:26:32.731Z","repository":{"id":216832835,"uuid":"324804512","full_name":"nachoaguirre/framework7-feedback-plugin","owner":"nachoaguirre","description":"Framework7 Feedback plugin","archived":false,"fork":false,"pushed_at":"2020-12-27T16:58:05.000Z","size":13,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-14T17:34:19.031Z","etag":null,"topics":["feedback","framework7","framework7-plugin"],"latest_commit_sha":null,"homepage":"https://nachoaguirre.github.io/framework7-feedback-plugin/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nachoaguirre.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-12-27T16:40:49.000Z","updated_at":"2023-12-07T06:23:58.000Z","dependencies_parsed_at":"2024-01-13T05:42:02.988Z","dependency_job_id":"82ca24e7-5a79-47d4-82a4-36e3643078cc","html_url":"https://github.com/nachoaguirre/framework7-feedback-plugin","commit_stats":null,"previous_names":["nachoaguirre/framework7-feedback-plugin"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nachoaguirre%2Fframework7-feedback-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nachoaguirre%2Fframework7-feedback-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nachoaguirre%2Fframework7-feedback-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nachoaguirre%2Fframework7-feedback-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nachoaguirre","download_url":"https://codeload.github.com/nachoaguirre/framework7-feedback-plugin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241862866,"owners_count":20032878,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["feedback","framework7","framework7-plugin"],"created_at":"2024-11-14T21:09:56.636Z","updated_at":"2025-03-04T14:26:32.707Z","avatar_url":"https://github.com/nachoaguirre.png","language":"JavaScript","readme":"# Framework7 Feedback Plugin\n\nThis plugin  will show a Feedback Survey to collect user's satisfaction/mood into [Framework7](http://www.framework7.io) apps and websites.\n\nMost aspects of the plugin are customizable by set or change the settings in your F7 initialization script. \n\nMade with Vanilla JS and only Framework7 components ([Dialog](https://framework7.io/docs/dialog.html), [Notification](https://framework7.io/docs/notification.html), [Prompt](https://framework7.io/docs/dialog.html#prompt) and [Alert](https://framework7.io/docs/dialog.html#alert)). Tested only in PWA without other implementations (Vue, React or Svelte).\n\n\nThe plugin implements Google Analytics with gtag events function, so make sure to install your GA code in order to send the events to your property.\nIt also lets you send data collected through Ajax POST to any remote server.\n\n\n## Live Preview\nhttps://nachoaguirre.github.io/framework7-feedback-plugin/\n\n\n## Installation\n\n1. Download plugin file (framework7.feedback.js) somewhere in your app folder.\n2. Place file somewhere in your app folder (maybe /js/ folder)\n3. Load file AFTER Framework7's script.\n\n```\n\u003cscript src=\"path/to/framework7.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"path/to/framework7.feedback.js\"\u003e\u003c/script\u003e\n```\n\n\n\n### Install \u0026 Enable Plugin\n\nAfter include script file in your page, you need to initialize it. Do this BEFORE you init app:\n\n```js\n// install plugin to Framework7\nFramework7.use(feedbackPlugin);\n\n// init app\nvar app = new Framework7({\n\troot: '#app', // or what ever your root is\n\tname: 'your-app-name',\n\tfeedback: { // Here you can change the default parameters of the plugin based on your needs. If you dont need to change some default parameter, then there is no need to include here.\n\t\tauto_init: true,\n\t\ttime_delay: 15000,\n\t\tshow_once: true,\n\t},\n    ...\n})\n```\n\n### Full Parameters List\n```js\nfeedback: {\n\tauto_init: true,\n\ttime_delay: 15000,\n\tshow_once: true,\n\tstorage_key: 'viewedFeedback',\n\tdialog:{\n\t\ttitle: 'Sorry for the interruption...',\n\t\ttext: 'What do you think of our new site?',\n\t\tbtn_ok: 'Send',\n\t\tbtn_cancel: 'Close',\n\t\tpost_ajax: false,\n\t\tpost_ajax_url: 'https://f7feedback.free.beeceptor.com',\n\t\tpost_ajax_param: 'rating'\n\t},\n\toptions:{\n\t\toption_1: '🤬',\n\t\toption_2: '🙁',\n\t\toption_3: '😶',\n\t\toption_4: '😁',\n\t\toption_5: '😍',\n\t},\n\tnotification:{\n\t\tshow: true,\n\t\ticon: '\u003ci class=\"f7-icons\"\u003erays\u003c/i\u003e',\n\t\ttitle: 'Thank You!',\n\t\ttitleRightText: 'now',\n\t\tsubtitle: 'You won a discount coupon for lunch with us',\n\t\ttext: 'Click to receive it',\n\t\tcloseTimeout: 5000,\n\t},\n\tprompt:{\n\t\tshow: true,\n\t\ttext: 'Enter your email',\n\t\tresponse: 'We will send the instructions to ',\n\t\tpost_ajax: false,\n\t\tpost_ajax_url: 'https://f7feedback.free.beeceptor.com',\n\t\tpost_ajax_param: 'answer',\n\t\tpost_ajax_include_rating: true,\n\t},\n\tgtag:{\n\t\tsend: true,\n\t\tevent: 'feedback',\n\t\tparam_sent: 'sent',\n\t\tparam_rating: 'rating',\n\t\tparam_prompt: 'answer',\n\t},\n}\n```\n\n\n### Parameters Description\n\n\u003ctable\u003e\n\t\u003cthead\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003cth\u003eParameter\u003c/th\u003e\n\t\t\t\u003cth\u003eType\u003c/th\u003e\n\t\t\t\u003cth\u003eDefault\u003c/th\u003e\n\t\t\t\u003cth\u003eDescription\u003c/th\u003e\n\t\t\u003c/tr\u003e\n\t\u003c/thead\u003e\n\t\u003ctbody\u003e    \n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003e\u003cb\u003eauto_init\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eboolean\u003c/td\u003e\n\t\t\t\u003ctd\u003etrue\u003c/td\u003e\n\t\t\t\u003ctd\u003eShould Feedback dialog be presented on startup? (after time_delay params).\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003e\u003cb\u003etime_delay\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003einteger\u003c/td\u003e\n\t\t\t\u003ctd\u003e15000\u003c/td\u003e\n\t\t\t\u003ctd\u003eTime before show the feedback dialog, in miliseconds.\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003e\u003cb\u003eshow_once\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eboolean\u003c/td\u003e\n\t\t\t\u003ctd\u003etrue\u003c/td\u003e\n\t\t\t\u003ctd\u003eShow dialog only once time per user, or always (based on LocalStorage data)\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003e\u003cb\u003estorage_key\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eviewedFeedback\u003c/td\u003e\n\t\t\t\u003ctd\u003eLocalStorage key name set when user view feedback, used with show_once parameter\u003c/td\u003e\n\t\t\u003c/tr\u003e\t\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003edialog \u0026raquo;\u003cbr /\u003e\u003cb\u003etitle\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eSorry for the interruption ...\u003c/td\u003e\n\t\t\t\u003ctd\u003eDialog title\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003edialog \u0026raquo;\u003cbr /\u003e\u003cb\u003etext\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eWhat do you think of our new site?\u003c/td\u003e\n\t\t\t\u003ctd\u003eDialog inner text\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003edialog \u0026raquo;\u003cbr /\u003e\u003cb\u003ebtn_ok\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eSend\u003c/td\u003e\n\t\t\t\u003ctd\u003eText for submit button (could be HTML string)\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003edialog \u0026raquo;\u003cbr /\u003e\u003cb\u003ebtn_cancel\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eClose\u003c/td\u003e\n\t\t\t\u003ctd\u003eText for close dialog without send feedback (could be HTML string)\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003edialog \u0026raquo;\u003cbr /\u003e\u003cb\u003epost_ajax\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eboolean\u003c/td\u003e\n\t\t\t\u003ctd\u003efalse\u003c/td\u003e\n\t\t\t\u003ctd\u003eIf enabled then user rating is sent to remote path/url via POST\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003edialog \u0026raquo;\u003cbr /\u003e\u003cb\u003epost_ajax_url\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003ehttps://f7feedback.free.beeceptor.com\u003c/td\u003e\n\t\t\t\u003ctd\u003eURL to send the POST data from feedback. Available only if post_ajax is true\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003edialog \u0026raquo;\u003cbr /\u003e\u003cb\u003epost_ajax_param\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003erating\u003c/td\u003e\n\t\t\t\u003ctd\u003eName of the key sent in POST to URL. Available only if post_ajax is true. \u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eoptions \u0026raquo;\u003cbr /\u003e\u003cb\u003eoption_1\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003e🤬\u003c/td\u003e\n\t\t\t\u003ctd\u003eContent to show for the option with value 1\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eoptions \u0026raquo;\u003cbr /\u003e\u003cb\u003eoption_2\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003e🙁\u003c/td\u003e\n\t\t\t\u003ctd\u003eContent to show for the option with value 2\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eoptions \u0026raquo;\u003cbr /\u003e\u003cb\u003eoption_3\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003e😶\u003c/td\u003e\n\t\t\t\u003ctd\u003eContent to show for the option with value 3\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eoptions \u0026raquo;\u003cbr /\u003e\u003cb\u003eoption_4\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003e😁\u003c/td\u003e\n\t\t\t\u003ctd\u003eContent to show for the option with value 4\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eoptions \u0026raquo;\u003cbr /\u003e\u003cb\u003eoption_5\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003e😍\u003c/td\u003e\n\t\t\t\u003ctd\u003eContent to show for the option with value 5\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003enotification \u0026raquo;\u003cbr /\u003e\u003cb\u003eshow\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eboolean\u003c/td\u003e\n\t\t\t\u003ctd\u003etrue\u003c/td\u003e\n\t\t\t\u003ctd\u003eIf user submits the feedback dialog (button with 'btn_ok' value), should be presented a notification message?\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003enotification \u0026raquo;\u003cbr /\u003e\u003cb\u003eicon\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003e\u003c i class=\"f7-icons\" \u003erays \u003c /i \u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eNotification icon HTML layout, e.g. \u003c i class=\"f7-icons\" \u003ehouse\u003c /i \u003e or image \u003c img src=\"path/to/icon.png\" \u003e\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003enotification \u0026raquo;\u003cbr /\u003e\u003cb\u003etitle\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eThank You!\u003c/td\u003e\n\t\t\t\u003ctd\u003eNotification title\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003enotification \u0026raquo;\u003cbr /\u003e\u003cb\u003etitleRightText\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003enow\u003c/td\u003e\n\t\t\t\u003ctd\u003eAdditional text on the right side of title\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003enotification \u0026raquo;\u003cbr /\u003e\u003cb\u003esubtitle\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eYou won a discount coupon for lunch with us\u003c/td\u003e\n\t\t\t\u003ctd\u003eNotification subtitle\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003enotification \u0026raquo;\u003cbr /\u003e\u003cb\u003etext\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eClick to receive it\u003c/td\u003e\n\t\t\t\u003ctd\u003eNotification inner text\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eprompt \u0026raquo;\u003cbr /\u003e\u003cb\u003eshow\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eboolean\u003c/td\u003e\n\t\t\t\u003ctd\u003etrue\u003c/td\u003e\n\t\t\t\u003ctd\u003eIf user clicks the notification message, should be presented a prompt dialog?\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eprompt \u0026raquo;\u003cbr /\u003e\u003cb\u003etext\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eEnter your email\u003c/td\u003e\n\t\t\t\u003ctd\u003ePrompt dialog text\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eprompt \u0026raquo;\u003cbr /\u003e\u003cb\u003eresponse\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eWe will send the instructions to \u003c/td\u003e\n\t\t\t\u003ctd\u003eText presented in an alert window prepending the user response\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eprompt \u0026raquo;\u003cbr /\u003e\u003cb\u003epost_ajax\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eboolean\u003c/td\u003e\n\t\t\t\u003ctd\u003efalse\u003c/td\u003e\n\t\t\t\u003ctd\u003eIf enabled then user response is sent to remote path/url via POST\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eprompt \u0026raquo;\u003cbr /\u003e\u003cb\u003epost_ajax_url\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003ehttps://f7feedback.free.beeceptor.com\u003c/td\u003e\n\t\t\t\u003ctd\u003eURL to send the POST data with response. Available only if post_ajax is true\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eprompt \u0026raquo;\u003cbr /\u003e\u003cb\u003epost_ajax_param\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eanswer\u003c/td\u003e\n\t\t\t\u003ctd\u003eName of the key sent in POST to URL. Available only if post_ajax is true.\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003eprompt \u0026raquo;\u003cbr /\u003e\u003cb\u003epost_ajax_include_rating\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eboolean\u003c/td\u003e\n\t\t\t\u003ctd\u003etrue\u003c/td\u003e\n\t\t\t\u003ctd\u003eInclude the rating value set by the user on the ajax post? The value is sent as 'rating' post name.\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003egtag \u0026raquo;\u003cbr /\u003e\u003cb\u003esend\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eboolean\u003c/td\u003e\n\t\t\t\u003ctd\u003etrue\u003c/td\u003e\n\t\t\t\u003ctd\u003eIf enabled then events will be sent to google analytics\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003egtag \u0026raquo;\u003cbr /\u003e\u003cb\u003eevent\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003efeedback\u003c/td\u003e\n\t\t\t\u003ctd\u003eEvent name of all the hits sent to GA\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003egtag \u0026raquo;\u003cbr /\u003e\u003cb\u003eparam_sent\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003esent\u003c/td\u003e\n\t\t\t\u003ctd\u003eName of the parameter sent if user submit or cancel the feedback dialog\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003egtag \u0026raquo;\u003cbr /\u003e\u003cb\u003eparam_rating\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003erating\u003c/td\u003e\n\t\t\t\u003ctd\u003eName of the parameter of the value choosen in dialog\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003egtag \u0026raquo;\u003cbr /\u003e\u003cb\u003eparam_prompt\u003c/b\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003estring\u003c/td\u003e\n\t\t\t\u003ctd\u003eanswer\u003c/td\u003e\n\t\t\t\u003ctd\u003eName of the parameter of the text sent by user in prompt\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\u003c/tbody\u003e\n\u003c/table\u003e\n\n\n## API\n\nThe following method are available on a feedback instance\n\n```javascript\napp.feedback.open();    // Open the feedback dialog. Use it if 'auto_init' parameter is set to false.\n```\n\n\n## Credits\nMade with effort and desire to learn in SCL.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnachoaguirre%2Fframework7-feedback-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnachoaguirre%2Fframework7-feedback-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnachoaguirre%2Fframework7-feedback-plugin/lists"}