Skip to content

Commit

Permalink
integrate @merlinnot comments
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-g committed Jan 13, 2018
1 parent 5274aeb commit f6b0b14
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions firebase-database-behavior.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@
(function() {
'use strict';

/**
* the element is notified that the path does not hold any data (fired by firebase-document or firebase query)
*
* @event empty-result
*/

/** @polymerBehavior Polymer.FirebaseDatabaseBehavior */
Polymer.FirebaseDatabaseBehaviorImpl = {
properties: {
Expand Down Expand Up @@ -55,8 +49,11 @@
},

/**
* `exists` is set to `true` when the data actually exists for the specified path; `false` otherwise.
* When we are unable to determine whether data exists or not (e.g. first round trip to the server not yet performed) the value is `null`
* `exists` is set to `true` when the data actually exists for the
* specified path; `false` otherwise.
* When we are unable to determine whether data exists or not
* (e.g. first round trip to the server not yet performed) the value
* is `null`
*/
exists: {
type: Boolean,
Expand Down

0 comments on commit f6b0b14

Please sign in to comment.