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

Side by Side Diff: lib/components/carousel.html

Issue 14295009: Fix widget.dart to work with the latest web_ui library. Specifically, query selectors need to use "… (Closed) Base URL: https://github.com/kevmoo/widget.dart.git@master
Patch Set: ptal Created 7 years, 8 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
« no previous file with comments | « lib/components/carousel.dart ('k') | lib/components/collapse.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <link rel="components" href="swap.html"> 4 <link rel="components" href="swap.html">
5 </head> 5 </head>
6 <body> 6 <body>
7 <element name="x-carousel" extends="div"> 7 <element name="x-carousel" extends="div" constructor="Carousel">
8 <template> 8 <template>
9 <style type='text/css'> 9 <style type='text/css'>
10 .carousel > a.carousel-control { 10 .carousel > a.carousel-control {
11 cursor: pointer; 11 cursor: pointer;
12 z-index: 5; 12 z-index: 5;
13 } 13 }
14 </style> 14 </style>
15 <div class='carousel'> 15 <div class='carousel'>
16 <x-swap> 16 <x-swap>
17 <content></content> 17 <content></content>
18 </x-swap> 18 </x-swap>
19 <a class="left carousel-control" on-click='previous()'>&lsaquo;</a> 19 <a class="left carousel-control" on-click='previous()'>&lsaquo;</a>
20 <a class="right carousel-control" on-click='next()'>&rsaquo;</a> 20 <a class="right carousel-control" on-click='next()'>&rsaquo;</a>
21 </div> 21 </div>
22 </template> 22 </template>
23 <script type="application/dart" src='carousel.dart'></script> 23 <script type="application/dart" src='carousel.dart'></script>
24 </element> 24 </element>
25 </body> 25 </body>
26 </html> 26 </html>
OLDNEW
« no previous file with comments | « lib/components/carousel.dart ('k') | lib/components/collapse.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698