Skip to content
This repository was archived by the owner on Sep 7, 2022. It is now read-only.

Commit fc2f456

Browse files
committed
Merge pull request #12 from PolymerElements/issue-2
Make sure behavior is annotated.
2 parents 1fd8148 + 7e05639 commit fc2f456

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

app-pouchdb-database-behavior.html

+10-8
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,20 @@
99
-->
1010
<link rel="import" href="../polymer/polymer.html">
1111
<link rel="import" href="pouchdb.html">
12-
<!--
13-
`Polymer.AppPouchDBDatabaseBehavior` is an abstract implementation that is
14-
intended to be shared by any element that refers to and operates on a PouchDB
15-
database instance. It includes implementation for creating and configuring a
16-
PouchDB database instance, and some advanced macro operations that might be
17-
performed on the database, including "upsert" and conflict-aware "put" and
18-
"post" operations.
19-
-->
2012
<script>
2113
(function() {
2214
'use strict';
2315

16+
/**
17+
* `Polymer.AppPouchDBDatabaseBehavior` is an abstract implementation that
18+
* is intended to be shared by any element that refers to and operates on a
19+
* PouchDB database instance. It includes implementation for creating and
20+
* configuring a PouchDB database instance, and some advanced macro
21+
* operations that might be performed on the database, including "upsert"
22+
* and conflict-aware "put" and "post" operations.
23+
*
24+
* @polymerBehavior
25+
*/
2426
Polymer.AppPouchDBDatabaseBehavior = {
2527
properties: {
2628
/**

0 commit comments

Comments
 (0)