Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Unified Diff: lib/iron_selectable.dart

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/iron_range_behavior.dart ('k') | lib/iron_validatable_behavior.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/iron_selectable.dart
diff --git a/lib/iron_selectable.dart b/lib/iron_selectable.dart
index d384c5d5c34ceff037f1009fcee0459a762496a9..38cd1356ad02ddda51599097d13f75755cf927cc 100644
--- a/lib/iron_selectable.dart
+++ b/lib/iron_selectable.dart
@@ -25,11 +25,6 @@ abstract class IronSelectableBehavior implements CustomElementProxyMixin {
String get attrForSelected => jsElement[r'attrForSelected'];
set attrForSelected(String value) { jsElement[r'attrForSelected'] = value; }
- /// The set of excluded elements where the key is the `localName`
- /// of the element that will be ignored from the item list.
- get excludedLocalNames => jsElement[r'excludedLocalNames'];
- set excludedLocalNames(value) { jsElement[r'excludedLocalNames'] = (value is Map || (value is Iterable && value is! JsArray)) ? new JsObject.jsify(value) : value;}
-
/// Returns an array of selectable items.
get items => jsElement[r'items'];
« no previous file with comments | « lib/iron_range_behavior.dart ('k') | lib/iron_validatable_behavior.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698