1 // Copyright 2013 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.
6 * Setup handlers for the minimize and close topbar buttons.
8 function initializeHandlers() {
9 $('minimize-button').addEventListener('click', function(e) {
11 chrome.app.window.current().minimize();
14 $('minimize-button').addEventListener('mousedown', function(e) {
18 $('close-button').addEventListener('click', function() {
22 $('close-button').addEventListener('mousedown', function(e) {
27 window.addEventListener('DOMContentLoaded', initializeHandlers);