Commit e7466e54 authored by Anand K. Mistry's avatar Anand K. Mistry Committed by Commit Bot

Move private properties below public ones in cr-searchable-dropdown

BUG=None

Change-Id: I3ffb028e0f657cf986eca367be40f621a1d02c83
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1824718Reviewed-by: default avatarMichael Giuffrida <michaelpg@chromium.org>
Commit-Queue: Anand Mistry <amistry@chromium.org>
Cr-Commit-Position: refs/heads/master@{#700010}
parent ed05178e
...@@ -55,9 +55,6 @@ Polymer({ ...@@ -55,9 +55,6 @@ Polymer({
notify: true, notify: true,
}, },
/** @private {string} */
searchTerm_: String,
/** @type {string} */ /** @type {string} */
label: { label: {
type: String, type: String,
...@@ -67,14 +64,17 @@ Polymer({ ...@@ -67,14 +64,17 @@ Polymer({
/** @type {boolean} */ /** @type {boolean} */
updateValueOnInput: Boolean, updateValueOnInput: Boolean,
/** @private {boolean} */
dropdownRefitPending_: Boolean,
/** @private {boolean} */ /** @private {boolean} */
showLoading: { showLoading: {
type: Boolean, type: Boolean,
value: false, value: false,
}, },
/** @private {string} */
searchTerm_: String,
/** @private {boolean} */
dropdownRefitPending_: Boolean,
}, },
listeners: { listeners: {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment