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

Unified Diff: third_party/polymer/v0_8/components-chromium/paper-toggle-button/paper-toggle-button-extracted.js

Issue 1155683008: Rename polymer and cr_elements v0_8 to v1_0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v1
Patch Set: fix a merge mistake Created 5 years, 7 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
Index: third_party/polymer/v0_8/components-chromium/paper-toggle-button/paper-toggle-button-extracted.js
diff --git a/third_party/polymer/v0_8/components-chromium/paper-toggle-button/paper-toggle-button-extracted.js b/third_party/polymer/v0_8/components-chromium/paper-toggle-button/paper-toggle-button-extracted.js
deleted file mode 100644
index 68a083ca7a1077ac12a4352fb184ed689a314c02..0000000000000000000000000000000000000000
--- a/third_party/polymer/v0_8/components-chromium/paper-toggle-button/paper-toggle-button-extracted.js
+++ /dev/null
@@ -1,114 +0,0 @@
-
- Polymer({
- is: 'paper-toggle-button',
-
- behaviors: [
- Polymer.PaperRadioButtonBehavior
- ],
-
- hostAttributes: {
- role: 'button',
- 'aria-pressed': 'false',
- tabindex: 0
- },
-
- properties: {
- /**
- * Fired when the checked state changes due to user interaction.
- *
- * @event change
- */
- /**
- * Fired when the checked state changes.
- *
- * @event iron-change
- */
- /**
- * Gets or sets the state, `true` is checked and `false` is unchecked.
- *
- * @attribute checked
- * @type boolean
- * @default false
- */
- checked: {
- type: Boolean,
- value: false,
- reflectToAttribute: true,
- notify: true,
- observer: '_checkedChanged'
- },
-
- /**
- * If true, the button toggles the active state with each tap or press
- * of the spacebar.
- *
- * @attribute toggles
- * @type boolean
- * @default true
- */
- toggles: {
- type: Boolean,
- value: true,
- reflectToAttribute: true
- }
- },
-
- listeners: {
- track: '_ontrack'
- },
-
- ready: function() {
- this._isReady = true;
- },
-
- // button-behavior hook
- _buttonStateChanged: function() {
- if (this.disabled) {
- return;
- }
- if (this._isReady) {
- this.checked = this.active;
- }
- },
-
- _checkedChanged: function(checked) {
- this.active = this.checked;
- this.fire('iron-change');
- },
-
- _ontrack: function(event) {
- var track = event.detail;
- if (track.state === 'start') {
- this._trackStart(track);
- } else if (track.state === 'track') {
- this._trackMove(track);
- } else if (track.state === 'end') {
- this._trackEnd(track);
- }
- },
-
- _trackStart: function(track) {
- this._width = this.$.toggleBar.offsetWidth / 2;
- /*
- * keep an track-only check state to keep the dragging behavior smooth
- * while toggling activations
- */
- this._trackChecked = this.checked;
- this.$.toggleButton.classList.add('dragging');
- },
-
- _trackMove: function(track) {
- var dx = track.dx;
- this._x = Math.min(this._width,
- Math.max(0, this._trackChecked ? this._width + dx : dx));
- this.translate3d(this._x + 'px', 0, 0, this.$.toggleButton);
- this._userActivate(this._x > (this._width / 2));
- },
-
- _trackEnd: function(track) {
- this.$.toggleButton.classList.remove('dragging');
- this.transform('', this.$.toggleButton);
- }
-
- });
-

Powered by Google App Engine
This is Rietveld 408576698