├── LICENSE
├── README.md
├── package.json
├── plugin.xml
├── sample
├── CreateBackgroundSyncDemo
├── config.xml
└── www
│ ├── css
│ └── index.css
│ ├── index.html
│ ├── js
│ └── index.js
│ └── sw.js
├── src
└── ios
│ └── CDVBackgroundSync.m
├── tests
├── plugin.xml
├── sw.js
└── tests.js
└── www
├── PeriodicSyncManager.js
├── PeriodicSyncRegistration.js
├── SyncManager.js
├── SyncRegistration.js
└── sw_assets
└── syncevents.js
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright {yyyy} {name of copyright owner}
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
203 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Cordova Background Sync
2 | Background Sync enables service worker applications to perform actions when certain conditions are achieved. For example, if you want your app to delay an action until a device has a wifi connection, you can use background sync to accomplish this. Here is an [explainer document](https://github.com/slightlyoff/BackgroundSync/blob/master/explainer.md) that goes into more detail about the purpose and usage of background sync.
3 |
4 | ## Plugin Status
5 | Supported Platforms: iOS
6 |
7 | ## Installation
8 | To add this plugin to your project, you can use the following cordova cli command
9 | ```
10 | cordova plugin add https://github.com/MobileChromeApps/cordova-plugin-service-worker-background-sync.git
11 | ```
12 |
13 | or, to install from npm:
14 | ```
15 | cordova plugin add cordova-plugin-service-worker-background-sync
16 | ```
17 |
18 | To remove this plugin, use the following command
19 | ```
20 | cordova plugin rm cordova-plugin-service-worker-background-sync
21 | ```
22 |
23 | Note: For background sync to work properly, you must first install the cordova [service worker plugin](https://github.com/MobileChromeApps/cordova-plugin-service-worker) before installing the background sync plugin.
24 |
25 | ## Preferences
26 | You can specify custom plugin preferences in your project's config.xml. This is similar to how you specify your service worker script.
27 |
28 | ```xml
29 | // Default: 1 hour
30 | // Default: 5 minutes
31 | // Default: 2 hours
32 | ```
33 | All three times are given in miliseconds.
34 | - `minperiod` specifies the minimum amount of time between repetitions of a periodic sync. Registration of a periodic sync will fail if the `minPeriod` property of the registration is less than this preference value. In the background sync spec, this value is known as `minPossiblePeriod` and is accessible in JavaScript as a property of the `PeriodicSyncManager`.
35 | - `syncpushback` is the minimum amount of time a viable one-off or periodic sync will wait after failing before being reassessed.
36 | - `syncmaxwaittime` is the maximum amount of time past the expiration of its minimum period that a periodic sync event will wait to be batched with other periodic sync events. This can prevent a periodic sync meant to happen daily from waiting for a periodic sync scheduled to take place weekly.
37 |
38 | ## Examples
39 | Here are a few examples that outline the basic usage of background sync.
40 | ### Getting Service Worker Registration
41 | ```javascript
42 | navigator.serviceWorker.ready.then(function (serviceWorkerRegistration) {
43 | ... //Most of your background sync related code should go in here
44 | }
45 | ```
46 | ### Checking Permission
47 | In the iOS implementation of background sync, permission defaults to granted. However, the user can disable background refresh capabilities manually. If permission is denied, sync events can still be executed in the foreground, but no sync events will be executed while the app is idle or in the background.
48 | ```javascript
49 | serviceWorkerRegistration.sync.permissionState().then(function(permissionState) {
50 | if (permissionState === "granted") {
51 | // We have permission to use background sync!
52 | }
53 | if (permissionState === "denied") {
54 | // We don't have permission to use background sync,
55 | // You can try and prompt the user to turn iOS's background referesh back on
56 | }
57 | });
58 | ```
59 | ### Registering Sync Events
60 | You can register sync events from both the page and the service worker context. Check out [this explainer](https://github.com/slightlyoff/BackgroundSync/blob/master/explainer.md) for details about the registration options.
61 |
62 | #### For One-off Sync Events
63 | ```javascript
64 | serviceWorkerRegistration.sync.register(
65 | {
66 | tag: "exampleSync" // A name used for retrieving or updating sync events, default: empty string
67 | }).then(function() { // Success
68 | // A sync event was successfully registered
69 | },
70 | function() { // Failure
71 | // There was a problem while registering a sync event
72 | });
73 | ```
74 | #### For Periodic Sync Events
75 | ```javascript
76 | serviceWorkerRegistration.periodicSync.register(
77 | {
78 | tag: "examplePeriodicSync", // A name used for retrieving or updating sync events, default: empty string
79 | minPeriod: 50000, // Delay between sync events repetition
80 | networkState: "avoid-cellular", // The minimum required network type for your sync event
81 | powerState: "avoid-draining" // Whether or not to fire sync events while on battery
82 | }).then(function() { // Success
83 | // A sync event was successfully registered
84 | },
85 | function() { // Failure
86 | // There was a problem while registering a sync event
87 | });
88 | ```
89 |
90 | ### Looking Up Sync Event Registrations
91 | ```javascript
92 | // Get all sync event registrations
93 | serviceWorkerRegistration.sync.getRegistrations().then(function(regs){
94 | regs.forEach(function(reg) {
95 | // Do something with the registrations
96 | ...
97 |
98 | // You can also unregister sync events
99 | reg.unregister();
100 | });
101 | });
102 |
103 | serviceWorkerRegistration.periodicSync.getRegistrations().then(function(regs){
104 | regs.forEach(function(reg) {
105 | // Do something with the registrations
106 | ...
107 |
108 | // You can also unregister sync events
109 | reg.unregister();
110 | });
111 | });
112 | ```
113 | ```javascript
114 | // Get a specific sync event registration by its Tag
115 | serviceWorkerRegistration.sync.getRegistration("exampleSync").then(function(reg) {
116 | // Do something with the registration
117 | console.log(reg.minDelay);
118 | },
119 | function(err) {
120 | // This id hasn't been registered
121 | console.log(err);
122 | });
123 |
124 | serviceWorkerRegistration.periodicSync.getRegistration("examplePeriodicSync").then(function(reg) {
125 | // Do something with the registration
126 | console.log(reg.minDelay);
127 | },
128 | function(err) {
129 | // This id hasn't been registered
130 | console.log(err);
131 | });
132 | ```
133 | ### Handling Sync Events
134 | All sync events will be dispatched to the same ```onsync``` event handler in your service worker script. All periodic sync events will be dispatched to the same ```onperiodicsync``` event handler. These event handlers are passed an event object which has a registration property that contains all of the registration options of the sync registration that triggered this event.
135 | #### One-off Sync Event
136 | ```javascript
137 | this.onsync = function(event) {
138 | if (event.registration.id === "exampleSync") {
139 | event.waitUntil(new Promise(function(resolve, reject) {
140 | var asyncCallback = function () {
141 | // This is asynchronous
142 | resolve();
143 | }
144 | someAsyncFunction(event.registration.id, asyncCallback);
145 | // One-off sync events are automatically unregistered after completion
146 | }));
147 | }
148 | };
149 | ```
150 | #### Periodic Sync Event
151 | ```javascript
152 | this.onperiodicsync = function(event) {
153 | if (event.registration.id === "examplePeriodicSync") {
154 | event.waitUntil(new Promise(function(resolve, reject) {
155 | var asyncCallback = function () {
156 | // This is asynchronous
157 | resolve();
158 | }
159 | someAsyncFunction(event.registration.id, asyncCallback);
160 | if (somethingHappened()) {
161 | // You can unregister a periodic sync from within its event handler
162 | // Otherwise, the sync event will be rescheduled after completion
163 | event.registration.unregister();
164 | }
165 | }));
166 | }
167 | };
168 | ```
169 | When you need to perform an asynchronous action inside the sync event handler, use ```event.waitUntil```. If a sync event is dispatched while your app is in the background, ```event.waitUntil``` will preserve your service worker until the promise it was given has been settled. If the promise is resolved, then the sync event is unregistered (unless it is periodic). If the promise is rejected, then the sync event is rescheduled with a pushback.
170 |
171 | iOS limits background execution runtime to 30 seconds. So even when using ```event.waitUntil``` you should be aware that your process will be terminated if it takes too long.
172 |
173 | ## Sample App
174 | To see this plugin in action, execute the CreateBackgroundSyncDemo script in a directory of your choice or run the following commands to create the sample app
175 | ```bash
176 | cordova create BackgroundSyncDemo io.cordova.backgroundsyncdemo BackgroundSyncDemo
177 | cd BackgroundSyncDemo
178 | cordova platform add ios
179 | cordova plugin add cordova-plugin-service-worker
180 | cordova plugin add cordova-plugin-service-worker-background-sync
181 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/config.xml' 'config.xml'
182 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/www/sw.js' 'www/sw.js'
183 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/www/index.html' 'www/index.html'
184 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/www/js/index.js' 'www/js/index.js'
185 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/www/css/index.css' 'www/css/index.css'
186 | cordova prepare
187 | ```
188 |
189 | ## 1.0.1 (April 30, 2015)
190 | * Updated installation instructions
191 |
192 | ## 1.0.0 (April 29, 2015)
193 | * Initial release
194 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "cordova-plugin-service-worker-background-sync",
3 | "version": "1.0.1",
4 | "description": "Background Sync Plugin",
5 | "cordova": {
6 | "id": "cordova-plugin-service-worker-background-sync",
7 | "platforms": [
8 | "ios"
9 | ]
10 | },
11 | "repository": {
12 | "type": "git",
13 | "url": "git+https://github.com/MobileChromeApps/cordova-plugin-service-worker-background-sync.git"
14 | },
15 | "keywords": [
16 | "cordova",
17 | "backgroundsync",
18 | "service",
19 | "worker",
20 | "ecosystem:cordova",
21 | "cordova-ios"
22 | ],
23 | "author": "The Chrome Team",
24 | "license": "Apache 2.0",
25 | "bugs": {
26 | "url": "https://github.com/MobileChromeApps/cordova-plugin-service-worker-background-sync/issues"
27 | },
28 | "homepage": "https://github.com/MobileChromeApps/cordova-plugin-service-worker-background-sync#readme"
29 | }
30 |
--------------------------------------------------------------------------------
/plugin.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
24 | BackgroundSync
25 | BackgroundSync Plugin
26 | Apache 2.0
27 | cordova,backgroundsync,service,worker
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 | fetch
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
--------------------------------------------------------------------------------
/sample/CreateBackgroundSyncDemo:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | cordova create BackgroundSyncDemo io.cordova.backgroundsyncdemo BackgroundSyncDemo
3 | cd BackgroundSyncDemo
4 | cordova platform add ios
5 | cordova plugin add cordova-plugin-service-worker
6 | cordova plugin add cordova-plugin-service-worker-background-sync
7 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/config.xml' 'config.xml'
8 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/www/sw.js' 'www/sw.js'
9 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/www/index.html' 'www/index.html'
10 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/www/js/index.js' 'www/js/index.js'
11 | mv 'plugins/cordova-plugin-service-worker-background-sync/sample/www/css/index.css' 'www/css/index.css'
12 | cordova prepare
13 |
--------------------------------------------------------------------------------
/sample/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | BackgroundSyncDemo
7 |
8 | A sample Apache Cordova application that responds to the deviceready event.
9 |
10 |
11 | Apache Cordova Team
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/sample/www/css/index.css:
--------------------------------------------------------------------------------
1 | /*
2 | * Licensed to the Apache Software Foundation (ASF) under one
3 | * or more contributor license agreements. See the NOTICE file
4 | * distributed with this work for additional information
5 | * regarding copyright ownership. The ASF licenses this file
6 | * to you under the Apache License, Version 2.0 (the
7 | * "License"); you may not use this file except in compliance
8 | * with the License. You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing,
13 | * software distributed under the License is distributed on an
14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 | * KIND, either express or implied. See the License for the
16 | * specific language governing permissions and limitations
17 | * under the License.
18 | */
19 | * {
20 | -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
21 | }
22 |
23 | body {
24 | overflow:hidden;
25 | width:100%;
26 | -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
27 | -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
28 | -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
29 | background-color:#E4E4E4;
30 | background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
31 | background-image:-webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
32 | background-image:-ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
33 | background-image:-webkit-gradient(
34 | linear,
35 | left top,
36 | left bottom,
37 | color-stop(0, #A7A7A7),
38 | color-stop(0.51, #E4E4E4)
39 | );
40 | background-attachment:fixed;
41 | font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
42 | font-size:12px;
43 | height:100%;
44 | margin:0px;
45 | padding:0px;
46 | width:100%;
47 | }
48 |
49 | /* Portrait layout (default) */
50 | .app {
51 | position: absolute;
52 | height:100%; /* text area height */
53 | width:100%; /* text area width */
54 | text-align:center;
55 | padding:20px 0px 0px 0px;
56 | display: flex;
57 | display: -webkit-flex;
58 | -webkit-flex-direction: column;
59 | flex-direction: column;
60 | -webkit-justify-content: center;
61 | justify-content: center;
62 | -webkit-box-sizing: border-box;
63 | }
64 |
65 | h1 {
66 | width:100%;
67 | font-size:24px;
68 | font-weight:normal;
69 | margin:0px;
70 | overflow:visible;
71 | padding:0px;
72 | }
73 |
74 | .heading {
75 | -webkit-flex: 0 1 auto;
76 | flex: 0 1 auto;
77 | }
78 |
79 | .event {
80 | border-radius:4px;
81 | -webkit-border-radius:4px;
82 | color:#FFFFFF;
83 | font-size:12px;
84 | margin:0px 30px;
85 | padding:2px 0px;
86 | }
87 |
88 | .event.listening {
89 | background-color:#333333;
90 | display:block;
91 | }
92 |
93 | .event.received {
94 | background-color:#4B946A;
95 | display:none;
96 | }
97 |
98 | @keyframes fade {
99 | from { opacity: 1.0; }
100 | 50% { opacity: 0.4; }
101 | to { opacity: 1.0; }
102 | }
103 |
104 | @-webkit-keyframes fade {
105 | from { opacity: 1.0; }
106 | 50% { opacity: 0.4; }
107 | to { opacity: 1.0; }
108 | }
109 |
110 | .blink {
111 | padding-left:25%;
112 | width:50%;
113 | animation:fade 3000ms infinite;
114 | -webkit-animation:fade 3000ms infinite;
115 | }
116 |
117 | .output {
118 | -webkit-flex: 1 1 auto;
119 | flex: 1 1 auto;
120 | padding: 10px;
121 | display: flex;
122 | display: -webkit-flex;
123 | -webkit-flex-direction: column;
124 | }
125 |
126 | #mainPage {
127 | -webkit-flex: 0 1 auto;
128 | flex: 0 1 auto;
129 | }
130 |
131 | #console {
132 | -webkit-flex: 1 1 auto;
133 | }
134 |
135 | .PSync {
136 | display: -webkit-box;
137 | -webkit-box-pack:center;
138 | -webkit-box-aligh:center;
139 | }
140 | .PSyncInner {
141 | text-align: left;
142 | }
143 |
--------------------------------------------------------------------------------
/sample/www/index.html:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |