This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <q-card ref="content"> | |
| <q-card-section :style="{ height: getHeight, overflowY: 'hidden' }" | |
| :class="sectionClasses"> | |
| <slot /> | |
| <div v-if="need" | |
| class="absolute-bottom full-width gradient" | |
| v-show="!expanded" | |
| :style="{ height: height*0.75 + 'px' }" /> | |
| <q-btn v-if="need" round flat color="teal" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version='1.0' encoding='utf-8'?> | |
| <widget id="ru.zakupsad.app" version="2.2.18" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | |
| <name>Apache Cordova</name> | |
| <description>Apache Cordova Team</description> | |
| <author email="dev@cordova.apache.org" href="http://cordova.io">Apache Cordova Team</author> | |
| <content src="index.html" /> | |
| <access origin="*" /> | |
| <allow-intent href="http://*/*" /> | |
| <allow-intent href="https://*/*" /> | |
| <allow-intent href="tel:*" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $this->instance->request_body = [ | |
| 'to' => $this->token->token, | |
| 'collapseKey' => $this->instance->topic, | |
| 'apns-collapse-id' => $this->instance->topic, | |
| 'Topic' => $this->instance->topic, | |
| 'collapse_key' => $this->instance->topic, | |
| 'time_to_live' => $this->instance->ttl ?: 3600, | |
| 'data' => [ | |
| 'title' => $this->instance->notification['title'] ?? env('APP_NAME'), | |
| 'body' => $this->instance->notification['body'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <q-input filled v-model="value" label="Адрес" class="suggestions-input" | |
| hint="Выберите вариант или продолжите ввод" | |
| :placeholder="placeholder" /> | |
| </template> | |
| <script> | |
| import 'suggestions-jquery' | |
| export default { | |
| props: { |