Sha256: c8a57b06880850af54d3483528996430675da95f8b97e035a7c303c60b18ff54

Contents?: true

Size: 1.19 KB

Versions: 8

Compression:

Stored size: 1.19 KB

Contents

<!DOCTYPE html>
<html>
<!--
Copyright 2008 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<!--
-->
  <head>
    <title>goog.ui.HsvaPalette</title>
    <link rel="stylesheet" href="css/demo.css" />
    <link rel="stylesheet" href="../css/hsvapalette.css" />
    <script src="../base.js"></script>
    <script>
    goog.require('goog.events');
    goog.require('goog.ui.Component.EventType');
    goog.require('goog.ui.HsvaPalette');
    </script>
  </head>
  <body>

    <h1>goog.ui.HsvaPalette</h1>

    <h3>Normal Size</h3>

    <script>

    var p = new goog.ui.HsvaPalette;
    p.render();

    </script>

    <h3>Smaller Size</h3>

    <script>

    function linkColors(e) {
      e.target.other.setColorRgbaHex(e.target.getColorRgbaHex());
    };

    var pSmall = new goog.ui.HsvaPalette(null, null, null,
        'goog-hsva-palette-sm');
    pSmall.render();

    p.other = pSmall;
    pSmall.other = p;
    goog.events.listen(p, goog.ui.Component.EventType.ACTION, linkColors);
    goog.events.listen(pSmall, goog.ui.Component.EventType.ACTION, linkColors);

    </script>

  </body>
</html>

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
k4compiler-0.0.1 third_party/closure-library/closure/goog/demos/hsvapalette.html
middleman-wizard-template-1.0.4 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/hsvapalette.html
middleman-wizard-template-1.0.3 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/hsvapalette.html
middleman-wizard-template-1.0.2 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/hsvapalette.html
middleman-wizard-template-1.0.1 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/hsvapalette.html
middleman-wizard-template-1.0.0.pre.1 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/hsvapalette.html
closure-1.2.701 closure-library/closure/goog/demos/hsvapalette.html
closure-1.1.692 closure-library/closure/goog/demos/hsvapalette.html