OLD | NEW |
1 <!-- | 1 <!-- |
2 @license | 2 @license |
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
4 This code may only be used under the BSD style license found at http://polym
er.github.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polym
er.github.io/LICENSE.txt |
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS
.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS
.txt |
6 The complete set of contributors may be found at http://polymer.github.io/CO
NTRIBUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CO
NTRIBUTORS.txt |
7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
8 subject to an additional IP rights grant found at http://polymer.github.io/P
ATENTS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/P
ATENTS.txt |
9 --> | 9 --> |
10 <!doctype html> | 10 <!doctype html> |
11 <html lang="en"> | 11 <html lang="en"> |
12 <head> | 12 <head> |
13 | 13 |
14 <meta charset="utf-8"> | 14 <meta charset="utf-8"> |
15 <meta name="viewport" content="width=device-width, user-scalable=no"> | 15 <meta name="viewport" content="width=device-width, user-scalable=no"> |
16 | 16 |
17 <title>Core Drag Drop</title> | 17 <title>Core Drag Drop</title> |
18 | 18 |
19 <script src="../platform/platform.js"></script> | 19 <script src="../webcomponentsjs/webcomponents.js"></script> |
20 | 20 |
21 <link rel="import" href="core-drag-drop.html"> | 21 <link rel="import" href="core-drag-drop.html"> |
22 | 22 |
23 <style> | 23 <style> |
24 | 24 |
25 html { | 25 html { |
26 font-family: 'Helvetica Neue', 'Roboto', 'Arial', sans-serif; | 26 font-family: 'Helvetica Neue', 'Roboto', 'Arial', sans-serif; |
27 } | 27 } |
28 | 28 |
29 body { | 29 body { |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 d.style.top = f.y - 4 + 'px'; | 93 d.style.top = f.y - 4 + 'px'; |
94 d.style.backgroundColor = color; | 94 d.style.backgroundColor = color; |
95 dropTarget.appendChild(d); | 95 dropTarget.appendChild(d); |
96 dropTarget.style.backgroundColor = color; | 96 dropTarget.style.backgroundColor = color; |
97 } | 97 } |
98 } | 98 } |
99 </script> | 99 </script> |
100 | 100 |
101 </body> | 101 </body> |
102 </html> | 102 </html> |
OLD | NEW |