Sha256: 32037807c1c8ce7bb4e026a859f73ad73cde918a030e13c9272a16fe986281ca

Contents?: true

Size: 1.22 KB

Versions: 8

Compression:

Stored size: 1.22 KB

Contents

<!DOCTYPE html>
<html>
<!--
Copyright 2010 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.DragDropDetector</title>
  <script src="../base.js"></script>
  <script>
    goog.require('goog.ui.DragDropDetector');
    goog.require('goog.ui.DragDropDetector.EventType');
  </script>
  <link rel="stylesheet" href="css/demo.css">
  <link rel="stylesheet" href="../css/dragdropdetector.css">
  <style type="text/css">
    html, body {
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
    }
  </style>
</head>
<body>
  <h1>goog.ui.DragDropDetector</h1>
  <p>Try dropping images from other web pages on this page.</p>
  <script type="text/javascript">
    var detector = new goog.ui.DragDropDetector();
    goog.events.listen(detector,
        [
          goog.ui.DragDropDetector.EventType.IMAGE_DROPPED,
          goog.ui.DragDropDetector.EventType.LINK_DROPPED
        ],
        function(e) {
          var str = 'Detected ' + e.getUrl();
          if (e.getPosition) {
            str += ' at ' + e.getPosition();
          }
          alert(str);
        });
  </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/dragdropdetector.html
middleman-wizard-template-1.0.4 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/dragdropdetector.html
middleman-wizard-template-1.0.3 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/dragdropdetector.html
middleman-wizard-template-1.0.2 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/dragdropdetector.html
middleman-wizard-template-1.0.1 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/dragdropdetector.html
middleman-wizard-template-1.0.0.pre.1 lib/middleman-wizard-template/template/closure/library/closure/goog/demos/dragdropdetector.html
closure-1.2.701 closure-library/closure/goog/demos/dragdropdetector.html
closure-1.1.692 closure-library/closure/goog/demos/dragdropdetector.html