| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <element name="x-company-info" constructor="CompanyInfoComponent" extends="d
iv"> | 7 <element name="x-company-info" constructor="CompanyInfoComponent" extends="d
iv"> |
| 8 <template> | 8 <template> |
| 9 <ul class="nav nav-pills"> | 9 <ul class="nav nav-pills"> |
| 10 <li class="{{activeClass('info')}}"> | 10 <li class="{{activeClass('info')}}"> |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 <template if="section == 'notes'"> | 37 <template if="section == 'notes'"> |
| 38 <h2>{{company['name']}}: Notes</h2> | 38 <h2>{{company['name']}}: Notes</h2> |
| 39 <textarea></textarea><br/> | 39 <textarea></textarea><br/> |
| 40 <button class="btn btn-primary">Add Note</button> | 40 <button class="btn btn-primary">Add Note</button> |
| 41 </template> | 41 </template> |
| 42 <script type="application/dart" src="company-info.dart"></script> | 42 <script type="application/dart" src="company-info.dart"></script> |
| 43 </template> | 43 </template> |
| 44 </element> | 44 </element> |
| 45 </body> | 45 </body> |
| 46 </html> | 46 </html> |
| OLD | NEW |