Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: block.js

Issue 8403145: First attempt at creating a first-run page (Closed)
Patch Set: Now with downscaling for smaller screens Created Oct. 1, 2012, 5:56 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 function init() 1 function init()
2 { 2 {
3 loadI18nStrings();
4
5 // Attach event listeners 3 // Attach event listeners
6 window.addEventListener("keydown", onKeyDown, false); 4 window.addEventListener("keydown", onKeyDown, false);
7 window.addEventListener("dragstart", onDragStart, false); 5 window.addEventListener("dragstart", onDragStart, false);
8 window.addEventListener("drag", onDrag, false); 6 window.addEventListener("drag", onDrag, false);
9 window.addEventListener("dragend", onDragEnd, false); 7 window.addEventListener("dragend", onDragEnd, false);
10 8
11 $("#addButton").click(addFilters); 9 $("#addButton").click(addFilters);
12 $("#cancelButton").click(closeDialog.bind(null, false)); 10 $("#cancelButton").click(closeDialog.bind(null, false));
13 11
14 // Apply jQuery UI styles 12 // Apply jQuery UI styles
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 ); 100 );
103 dragCoords = [event.screenX, event.screenY]; 101 dragCoords = [event.screenX, event.screenY];
104 } 102 }
105 } 103 }
106 104
107 function onDragEnd(event) 105 function onDragEnd(event)
108 { 106 {
109 onDrag(event); 107 onDrag(event);
110 dragCoords = null; 108 dragCoords = null;
111 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld