| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior
/iron-resizable-behavior.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior
/iron-resizable-behavior.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma
terial.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma
terial.html"> |
| 4 <link rel="import" href="drag_behavior.html"> | 5 <link rel="import" href="drag_behavior.html"> |
| 5 <link rel="import" href="layout_behavior.html"> | 6 <link rel="import" href="layout_behavior.html"> |
| 6 <link rel="import" href="../settings_shared_css.html"> | 7 <link rel="import" href="../settings_shared_css.html"> |
| 7 | 8 |
| 8 <dom-module id="display-layout"> | 9 <dom-module id="display-layout"> |
| 9 <template> | 10 <template> |
| 10 <style include="settings-shared"> | 11 <style include="settings-shared"> |
| 11 /* Use relative position with no offset so that display divs (children), | 12 /* Use relative position with no offset so that display divs (children), |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 draggable="[[dragEnabled]]" on-tap="onSelectDisplayTap_" | 65 draggable="[[dragEnabled]]" on-tap="onSelectDisplayTap_" |
| 65 style$="[[getDivStyle_(item.id, item.bounds, visualScale)]]" | 66 style$="[[getDivStyle_(item.id, item.bounds, visualScale)]]" |
| 66 selected$="[[isSelected_(item, selectedDisplay)]]"> | 67 selected$="[[isSelected_(item, selectedDisplay)]]"> |
| 67 [[item.name]] | 68 [[item.name]] |
| 68 </paper-material> | 69 </paper-material> |
| 69 </template> | 70 </template> |
| 70 </div> | 71 </div> |
| 71 </template> | 72 </template> |
| 72 <script src="display_layout.js"></script> | 73 <script src="display_layout.js"></script> |
| 73 </dom-module> | 74 </dom-module> |
| OLD | NEW |