1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
8 Polymer('viewer-button', {
13 var mql = window.matchMedia('(-webkit-min-device-pixel-ratio: 1.3');
14 dpi = mql.matches ? 'hi' : 'low';
17 imgChanged: function() {
19 this.$.icon.style.backgroundImage =
20 'url(' + this.getAttribute('assetpath') + 'img/' + dpi +
21 'DPI/' + this.img + ')';
23 this.$.icon.style.backgroundImage = '';
26 latchableChanged: function() {
28 this.classList.add('latchable');
30 this.classList.remove('latchable');