Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: chrome/browser/resources/new_new_tab.html

Issue 6297013: [NTP] Allow reordering of apps via drag and drop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values=" 2 <html i18n-values="
3 dir:textdirection; 3 dir:textdirection;
4 bookmarkbarattached:bookmarkbarattached; 4 bookmarkbarattached:bookmarkbarattached;
5 hasattribution:hasattribution; 5 hasattribution:hasattribution;
6 anim:anim; 6 anim:anim;
7 syncispresent:syncispresent; 7 syncispresent:syncispresent;
8 customlogo:customlogo" 8 customlogo:customlogo"
9 install-animation-enabled="true"> 9 install-animation-enabled="true">
10 <head> 10 <head>
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 <script src="shared/js/cr/ui.js"></script> 279 <script src="shared/js/cr/ui.js"></script>
280 <script src="shared/js/cr/ui/command.js"></script> 280 <script src="shared/js/cr/ui/command.js"></script>
281 <script src="shared/js/cr/ui/menu_item.js"></script> 281 <script src="shared/js/cr/ui/menu_item.js"></script>
282 <script src="shared/js/cr/ui/menu.js"></script> 282 <script src="shared/js/cr/ui/menu.js"></script>
283 <script src="shared/js/cr/ui/position_util.js"></script> 283 <script src="shared/js/cr/ui/position_util.js"></script>
284 <script src="shared/js/cr/ui/menu_button.js"></script> 284 <script src="shared/js/cr/ui/menu_button.js"></script>
285 <script src="shared/js/cr/ui/context_menu_button.js"></script> 285 <script src="shared/js/cr/ui/context_menu_button.js"></script>
286 <script src="shared/js/cr/ui/context_menu_handler.js"></script> 286 <script src="shared/js/cr/ui/context_menu_handler.js"></script>
287 287
288 <script src="ntp/util.js"></script> 288 <script src="ntp/util.js"></script>
289 <script src="ntp/draganddrop.js"></script>
arv (Not doing code reviews) 2011/01/22 00:52:14 use underscore as word separator in file names
jstritar 2011/01/24 01:00:42 Done.
289 <script src="ntp/most_visited.js"></script> 290 <script src="ntp/most_visited.js"></script>
290 <script src="new_new_tab.js"></script> 291 <script src="new_new_tab.js"></script>
291 <script src="ntp/apps.js"></script> 292 <script src="ntp/apps.js"></script>
292 293
293 <script> 294 <script>
294 cr.ui.decorate('menu', cr.ui.Menu); 295 cr.ui.decorate('menu', cr.ui.Menu);
295 cr.ui.decorate('command', cr.ui.Command); 296 cr.ui.decorate('command', cr.ui.Command);
296 cr.ui.decorate('button[menu]', cr.ui.MenuButton); 297 cr.ui.decorate('button[menu]', cr.ui.MenuButton);
297 298
298 if (cr.isChromeOS) 299 if (cr.isChromeOS)
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 // disabled or not. So we need to add the 'disabled' class back to the apps 332 // disabled or not. So we need to add the 'disabled' class back to the apps
332 // section here. We remove it later, once we know for sure we want it to be 333 // section here. We remove it later, once we know for sure we want it to be
333 // enabled. 334 // enabled.
334 // 335 //
335 // See also: crbug.com/67273. 336 // See also: crbug.com/67273.
336 $('apps').classList.add('disabled'); 337 $('apps').classList.add('disabled');
337 338
338 layoutSections(); 339 layoutSections();
339 </script> 340 </script>
340 </html> 341 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698