Index: bower_components/core-dropdown/demo.html |
diff --git a/bower_components/core-dropdown/demo.html b/bower_components/core-dropdown/demo.html |
deleted file mode 100644 |
index cba513c343800e411ea9194a4ed64553d4c00abc..0000000000000000000000000000000000000000 |
--- a/bower_components/core-dropdown/demo.html |
+++ /dev/null |
@@ -1,703 +0,0 @@ |
-<!doctype html> |
-<!-- |
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
-Code distributed by Google as part of the polymer project is also |
-subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
---> |
- |
-<!-- |
-Issues: |
- |
-* what to do on window resize? |
- * reposition |
-* what to do when window scrolls? |
- * tbd |
-* positioning |
- * convenience - halign, valign |
- * possible to use custom CSS |
- |
-Approaches: |
- |
-* uses default core-overlay behavior |
- * possible to be always on top |
- * doesn't scroll with |
- * core-dropdown is independent of the triggering element |
-* uses position: absolute |
- * scrolls with |
- * might not be always on top |
- * core-dropdown needs to know about both the triggering element and the dropdown |
-* core-dropdown contains both the triggering element and the dropdown, uses distribution |
- * how do I position the dropdown? |
- * if the dropdown is the distributed node, it's hard to style the dropdown from the outside because of specificity |
- * if the dropdown is the container of the distributed node, it's hard to style the dropdown from the outside |
- because of shadow dom - maybe ok? |
- |
-Related elements: |
- |
-core-dropdown - a control that triggers a dropdown |
-core-dropdown-menu - a control that triggers a dropdown menu, similar to select |
-core-menu-button - a icon button that triggers a dropdown menu |
---> |
-<html> |
-<head> |
- |
- <meta charset="utf-8"> |
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
- <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> |
- |
- <title>core-dropdown</title> |
- |
- <script src="../platform/platform.js"></script> |
- |
- <link href="../core-icon/core-icon.html" rel="import"> |
- <link href="../core-icons/core-icons.html" rel="import"> |
- <link href="../core-icons/social-icons.html" rel="import"> |
- <link href="../core-icon-button/core-icon-button.html" rel="import"> |
- |
- <link href="core-dropdown.html" rel="import"> |
- |
- <style shim-shadowdom> |
- body { |
- font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; |
- font-size: 16px; |
- } |
- |
- html, body { |
- height: 100%; |
- margin: 0; |
- } |
- |
- html /deep/ core-dropdown { |
- background-color: #eee; |
- color: #000; |
- border: 1px solid #ccc; |
- border-radius: 3px; |
- } |
- |
- drop-down.margin::shadow core-dropdown { |
- margin: 12px; |
- } |
- |
- drop-down.open-below::shadow core-dropdown { |
- position: absolute; |
- top: 38px; |
- left: 0px; |
- } |
- |
- drop-down.constrained::shadow core-dropdown { |
- max-height: 500px; |
- } |
- |
- .dropdown { |
- padding: 12px; |
- } |
- |
- .toolbar { |
- color: #fff; |
- font-size: 16px; |
- } |
- |
- .toolbar-1 { |
- background-color: #3b78e7; |
- } |
- |
- .toolbar-2 { |
- background-color: #4285f4; |
- } |
- |
- .toolbar-3 { |
- background-color: #5e97f6; |
- } |
- |
- .bottom-toolbar-1 { |
- background-color: #0d904f; |
- } |
- |
- .bottom-toolbar-2 { |
- background-color: #0f9d58; |
- } |
- |
- .bottom-toolbar-3 { |
- background-color: #33ac71; |
- } |
- |
- .toolbar > * { |
- padding: 12px; |
- } |
- |
- .toolbar-label { |
- width: 100px; |
- } |
- |
- .middle { |
- overflow: auto; |
- } |
- |
- .middle > * { |
- padding: 12px; |
- } |
- |
- </style> |
- |
-</head> |
-<body> |
- |
- <polymer-element name="drop-down" attributes="opened halign valign"> |
- <template> |
- <style> |
- :host { |
- display: inline-block; |
- position: relative; |
- } |
- </style> |
- <div id="trigger" on-tap="{{toggle}}"> |
- <content select=".core-dropdown-trigger"></content> |
- </div> |
- <core-dropdown relatedTarget="{{$.trigger}}" halign="{{halign}}" valign="{{valign}}" opened="{{opened}}" margin="12"> |
- <content></content> |
- </core-dropdown> |
- </template> |
- <script> |
- Polymer({ |
- toggle: function() { |
- this.opened = !this.opened; |
- } |
- }); |
- </script> |
- </polymer-element> |
- |
- <polymer-element name="drop-down-2" attributes="opened halign valign"> |
- <template> |
- <style> |
- :host { |
- display: inline-block; |
- } |
- #trigger { |
- position: relative; |
- } |
- </style> |
- <div id="trigger" on-tap="{{toggle}}"> |
- <content select=".core-dropdown-trigger"></content> |
- <core-dropdown relatedTarget="{{$.trigger}}" halign="{{halign}}" valign="{{valign}}" opened="{{opened}}" margin="12"> |
- <content></content> |
- </core-dropdown> |
- </div> |
- </template> |
- <script> |
- Polymer({ |
- toggle: function() { |
- this.opened = !this.opened; |
- } |
- }); |
- </script> |
- </polymer-element> |
- |
- <template is="auto-binding"> |
- |
- <div layout vertical fit> |
- |
- <div class="toolbar toolbar-1" layout horizontal center> |
- |
- <div class="toolbar-label"> |
- halign=left valign=top |
- </div> |
- |
- <drop-down halign="left"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown" layout horizontal center-center> |
- <h2>Hello World!</h2> |
- </div> |
- </drop-down> |
- |
- <drop-down-2 halign="left"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown" layout horizontal center-center> |
- <h2>I'm a child of the button</h2> |
- </div> |
- </drop-down-2> |
- |
- <drop-down halign="left"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown"> |
- <h2>scrollable-vertical</h2> |
- <template repeat="{{countries}}"> |
- <p>{{name}}</p> |
- </template> |
- </div> |
- </drop-down> |
- |
- <drop-down class="margin" halign="left"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown"> |
- <h2>margins</h2> |
- <template repeat="{{countries}}"> |
- <p>{{name}}</p> |
- </template> |
- </div> |
- </drop-down> |
- |
- <div flex> |
- </div> |
- |
- </div> |
- |
- <div class="toolbar toolbar-2" layout horizontal center> |
- |
- <div class="toolbar-label"> |
- halign=right valign=top |
- </div> |
- |
- <div flex></div> |
- |
- <drop-down class="margin" halign="right"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown"> |
- <h2>margin</h2> |
- <template repeat="{{countries}}"> |
- <p>{{name}}</p> |
- </template> |
- </div> |
- </drop-down> |
- |
- <drop-down halign="right"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown"> |
- <h2>scrollable-vertical</h2> |
- <template repeat="{{countries}}"> |
- <p>{{name}}</p> |
- </template> |
- </div> |
- </drop-down> |
- |
- <drop-down-2 halign="right"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown" layout horizontal center-center> |
- <h2>I'm a child of the button</h2> |
- </div> |
- </drop-down-2> |
- |
- <drop-down halign="right"> |
- <core-icon-button class="core-dropdown-trigger" icon="more-vert"></core-icon-button> |
- <div class="dropdown" layout horizontal center-center> |
- <h2>Hello World!</h2> |
- </div> |
- </drop-down> |
- |
- </div> |
- |
- <div flex class="middle"> |
- <div> |
- <drop-down> |
- <core-icon-button class="core-dropdown-trigger" icon="social:notifications"></core-icon-button> |
- <div class="dropdown"> |
- <h2>Hello World!</h2> |
- </div> |
- </drop-down> |
- |
- <drop-down class="open-below"> |
- <core-icon-button class="core-dropdown-trigger" icon="social:notifications"></core-icon-button> |
- <div class="dropdown"> |
- <h2>Custom positioning</h2> |
- </div> |
- </drop-down> |
- |
- <drop-down class="open-below constrained"> |
- <core-icon-button class="core-dropdown-trigger" icon="social:notifications"></core-icon-button> |
- <div class="dropdown"> |
- <h2>Scrollable + custom size + custom positioning</h2> |
- <template repeat="{{countries}}"> |
- <p>{{name}}</p> |
- </template> |
- </div> |
- </drop-down> |
- </div> |
- |
- <p>scroll me...</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- |
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> |
- </div> |
- |
- <div class="toolbar bottom-toolbar-2" layout horizontal center> |
- |
- <div class="toolbar-label"> |
- halign=left valign=bottom |
- </div> |
- |
- <drop-down halign="left" valign="bottom"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown" layout horizontal center-center> |
- <h2>Hello World!</h2> |
- </div> |
- </drop-down> |
- |
- <drop-down-2 halign="left" valign="bottom"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown" layout horizontal center-center> |
- <h2>I'm a child of the button</h2> |
- </div> |
- </drop-down-2> |
- |
- <drop-down halign="left" valign="bottom"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown"> |
- <h2>scrollable-vertical</h2> |
- <template repeat="{{countries}}"> |
- <p>{{name}}</p> |
- </template> |
- </div> |
- </drop-down> |
- |
- <drop-down class="margin" halign="left" valign="bottom"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown"> |
- <h2>margin</h2> |
- <template repeat="{{countries}}"> |
- <p>{{name}}</p> |
- </template> |
- </div> |
- </drop-down> |
- |
- <div flex> |
- </div> |
- |
- </div> |
- |
- <div class="toolbar bottom-toolbar-1" layout horizontal center> |
- |
- <div class="toolbar-label"> |
- halign=right valign=bottom |
- </div> |
- |
- <div flex></div> |
- |
- <drop-down class="margin" halign="right" valign="bottom"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown"> |
- <h2>margin</h2> |
- <template repeat="{{countries}}"> |
- <p>{{name}}</p> |
- </template> |
- </div> |
- </drop-down> |
- |
- <drop-down halign="right" valign="bottom"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown"> |
- <h2>scrollable-vertical</h2> |
- <template repeat="{{countries}}"> |
- <p>{{name}}</p> |
- </template> |
- </div> |
- </drop-down> |
- |
- <drop-down-2 halign="right" valign="bottom"> |
- <core-icon-button class="core-dropdown-trigger" icon="menu"></core-icon-button> |
- <div class="dropdown" layout horizontal center-center> |
- <h2>I'm a child of the button</h2> |
- </div> |
- </drop-down-2> |
- |
- <drop-down halign="right" valign="bottom"> |
- <core-icon-button class="core-dropdown-trigger" icon="more-vert"></core-icon-button> |
- <div class="dropdown" layout horizontal center-center> |
- <h2>Hello World!</h2> |
- </div> |
- </drop-down> |
- |
- </div> |
- |
- </div> |
- |
- </template> |
- |
- <script> |
- |
- scope = document.querySelector('template[is=auto-binding]'); |
- |
- scope.countries = [ |
- {name: 'Afghanistan', code: 'AF'}, |
- {name: 'Ă…land Islands', code: 'AX'}, |
- {name: 'Albania', code: 'AL'}, |
- {name: 'Algeria', code: 'DZ'}, |
- {name: 'American Samoa', code: 'AS'}, |
- {name: 'Andorra', code: 'AD'}, |
- {name: 'Angola', code: 'AO'}, |
- {name: 'Anguilla', code: 'AI'}, |
- {name: 'Antarctica', code: 'AQ'}, |
- {name: 'Antigua and Barbuda', code: 'AG'}, |
- {name: 'Argentina', code: 'AR'}, |
- {name: 'Armenia', code: 'AM'}, |
- {name: 'Aruba', code: 'AW'}, |
- {name: 'Australia', code: 'AU'}, |
- {name: 'Austria', code: 'AT'}, |
- {name: 'Azerbaijan', code: 'AZ'}, |
- {name: 'Bahamas', code: 'BS'}, |
- {name: 'Bahrain', code: 'BH'}, |
- {name: 'Bangladesh', code: 'BD'}, |
- {name: 'Barbados', code: 'BB'}, |
- {name: 'Belarus', code: 'BY'}, |
- {name: 'Belgium', code: 'BE'}, |
- {name: 'Belize', code: 'BZ'}, |
- {name: 'Benin', code: 'BJ'}, |
- {name: 'Bermuda', code: 'BM'}, |
- {name: 'Bhutan', code: 'BT'}, |
- {name: 'Bolivia', code: 'BO'}, |
- {name: 'Bosnia and Herzegovina', code: 'BA'}, |
- {name: 'Botswana', code: 'BW'}, |
- {name: 'Bouvet Island', code: 'BV'}, |
- {name: 'Brazil', code: 'BR'}, |
- {name: 'British Indian Ocean Territory', code: 'IO'}, |
- {name: 'Brunei Darussalam', code: 'BN'}, |
- {name: 'Bulgaria', code: 'BG'}, |
- {name: 'Burkina Faso', code: 'BF'}, |
- {name: 'Burundi', code: 'BI'}, |
- {name: 'Cambodia', code: 'KH'}, |
- {name: 'Cameroon', code: 'CM'}, |
- {name: 'Canada', code: 'CA'}, |
- {name: 'Cape Verde', code: 'CV'}, |
- {name: 'Cayman Islands', code: 'KY'}, |
- {name: 'Central African Republic', code: 'CF'}, |
- {name: 'Chad', code: 'TD'}, |
- {name: 'Chile', code: 'CL'}, |
- {name: 'China', code: 'CN'}, |
- {name: 'Christmas Island', code: 'CX'}, |
- {name: 'Cocos (Keeling) Islands', code: 'CC'}, |
- {name: 'Colombia', code: 'CO'}, |
- {name: 'Comoros', code: 'KM'}, |
- {name: 'Congo', code: 'CG'}, |
- {name: 'Congo, The Democratic Republic of the', code: 'CD'}, |
- {name: 'Cook Islands', code: 'CK'}, |
- {name: 'Costa Rica', code: 'CR'}, |
- {name: 'Cote D\'Ivoire', code: 'CI'}, |
- {name: 'Croatia', code: 'HR'}, |
- {name: 'Cuba', code: 'CU'}, |
- {name: 'Cyprus', code: 'CY'}, |
- {name: 'Czech Republic', code: 'CZ'}, |
- {name: 'Denmark', code: 'DK'}, |
- {name: 'Djibouti', code: 'DJ'}, |
- {name: 'Dominica', code: 'DM'}, |
- {name: 'Dominican Republic', code: 'DO'}, |
- {name: 'Ecuador', code: 'EC'}, |
- {name: 'Egypt', code: 'EG'}, |
- {name: 'El Salvador', code: 'SV'}, |
- {name: 'Equatorial Guinea', code: 'GQ'}, |
- {name: 'Eritrea', code: 'ER'}, |
- {name: 'Estonia', code: 'EE'}, |
- {name: 'Ethiopia', code: 'ET'}, |
- {name: 'Falkland Islands (Malvinas)', code: 'FK'}, |
- {name: 'Faroe Islands', code: 'FO'}, |
- {name: 'Fiji', code: 'FJ'}, |
- {name: 'Finland', code: 'FI'}, |
- {name: 'France', code: 'FR'}, |
- {name: 'French Guiana', code: 'GF'}, |
- {name: 'French Polynesia', code: 'PF'}, |
- {name: 'French Southern Territories', code: 'TF'}, |
- {name: 'Gabon', code: 'GA'}, |
- {name: 'Gambia', code: 'GM'}, |
- {name: 'Georgia', code: 'GE'}, |
- {name: 'Germany', code: 'DE'}, |
- {name: 'Ghana', code: 'GH'}, |
- {name: 'Gibraltar', code: 'GI'}, |
- {name: 'Greece', code: 'GR'}, |
- {name: 'Greenland', code: 'GL'}, |
- {name: 'Grenada', code: 'GD'}, |
- {name: 'Guadeloupe', code: 'GP'}, |
- {name: 'Guam', code: 'GU'}, |
- {name: 'Guatemala', code: 'GT'}, |
- {name: 'Guernsey', code: 'GG'}, |
- {name: 'Guinea', code: 'GN'}, |
- {name: 'Guinea-Bissau', code: 'GW'}, |
- {name: 'Guyana', code: 'GY'}, |
- {name: 'Haiti', code: 'HT'}, |
- {name: 'Heard Island and Mcdonald Islands', code: 'HM'}, |
- {name: 'Holy See (Vatican City State)', code: 'VA'}, |
- {name: 'Honduras', code: 'HN'}, |
- {name: 'Hong Kong', code: 'HK'}, |
- {name: 'Hungary', code: 'HU'}, |
- {name: 'Iceland', code: 'IS'}, |
- {name: 'India', code: 'IN'}, |
- {name: 'Indonesia', code: 'ID'}, |
- {name: 'Iran, Islamic Republic Of', code: 'IR'}, |
- {name: 'Iraq', code: 'IQ'}, |
- {name: 'Ireland', code: 'IE'}, |
- {name: 'Isle of Man', code: 'IM'}, |
- {name: 'Israel', code: 'IL'}, |
- {name: 'Italy', code: 'IT'}, |
- {name: 'Jamaica', code: 'JM'}, |
- {name: 'Japan', code: 'JP'}, |
- {name: 'Jersey', code: 'JE'}, |
- {name: 'Jordan', code: 'JO'}, |
- {name: 'Kazakhstan', code: 'KZ'}, |
- {name: 'Kenya', code: 'KE'}, |
- {name: 'Kiribati', code: 'KI'}, |
- {name: 'Korea, Democratic People\'S Republic of', code: 'KP'}, |
- {name: 'Korea, Republic of', code: 'KR'}, |
- {name: 'Kuwait', code: 'KW'}, |
- {name: 'Kyrgyzstan', code: 'KG'}, |
- {name: 'Lao People\'S Democratic Republic', code: 'LA'}, |
- {name: 'Latvia', code: 'LV'}, |
- {name: 'Lebanon', code: 'LB'}, |
- {name: 'Lesotho', code: 'LS'}, |
- {name: 'Liberia', code: 'LR'}, |
- {name: 'Libyan Arab Jamahiriya', code: 'LY'}, |
- {name: 'Liechtenstein', code: 'LI'}, |
- {name: 'Lithuania', code: 'LT'}, |
- {name: 'Luxembourg', code: 'LU'}, |
- {name: 'Macao', code: 'MO'}, |
- {name: 'Macedonia, The Former Yugoslav Republic of', code: 'MK'}, |
- {name: 'Madagascar', code: 'MG'}, |
- {name: 'Malawi', code: 'MW'}, |
- {name: 'Malaysia', code: 'MY'}, |
- {name: 'Maldives', code: 'MV'}, |
- {name: 'Mali', code: 'ML'}, |
- {name: 'Malta', code: 'MT'}, |
- {name: 'Marshall Islands', code: 'MH'}, |
- {name: 'Martinique', code: 'MQ'}, |
- {name: 'Mauritania', code: 'MR'}, |
- {name: 'Mauritius', code: 'MU'}, |
- {name: 'Mayotte', code: 'YT'}, |
- {name: 'Mexico', code: 'MX'}, |
- {name: 'Micronesia, Federated States of', code: 'FM'}, |
- {name: 'Moldova, Republic of', code: 'MD'}, |
- {name: 'Monaco', code: 'MC'}, |
- {name: 'Mongolia', code: 'MN'}, |
- {name: 'Montserrat', code: 'MS'}, |
- {name: 'Morocco', code: 'MA'}, |
- {name: 'Mozambique', code: 'MZ'}, |
- {name: 'Myanmar', code: 'MM'}, |
- {name: 'Namibia', code: 'NA'}, |
- {name: 'Nauru', code: 'NR'}, |
- {name: 'Nepal', code: 'NP'}, |
- {name: 'Netherlands', code: 'NL'}, |
- {name: 'Netherlands Antilles', code: 'AN'}, |
- {name: 'New Caledonia', code: 'NC'}, |
- {name: 'New Zealand', code: 'NZ'}, |
- {name: 'Nicaragua', code: 'NI'}, |
- {name: 'Niger', code: 'NE'}, |
- {name: 'Nigeria', code: 'NG'}, |
- {name: 'Niue', code: 'NU'}, |
- {name: 'Norfolk Island', code: 'NF'}, |
- {name: 'Northern Mariana Islands', code: 'MP'}, |
- {name: 'Norway', code: 'NO'}, |
- {name: 'Oman', code: 'OM'}, |
- {name: 'Pakistan', code: 'PK'}, |
- {name: 'Palau', code: 'PW'}, |
- {name: 'Palestinian Territory, Occupied', code: 'PS'}, |
- {name: 'Panama', code: 'PA'}, |
- {name: 'Papua New Guinea', code: 'PG'}, |
- {name: 'Paraguay', code: 'PY'}, |
- {name: 'Peru', code: 'PE'}, |
- {name: 'Philippines', code: 'PH'}, |
- {name: 'Pitcairn', code: 'PN'}, |
- {name: 'Poland', code: 'PL'}, |
- {name: 'Portugal', code: 'PT'}, |
- {name: 'Puerto Rico', code: 'PR'}, |
- {name: 'Qatar', code: 'QA'}, |
- {name: 'Reunion', code: 'RE'}, |
- {name: 'Romania', code: 'RO'}, |
- {name: 'Russian Federation', code: 'RU'}, |
- {name: 'RWANDA', code: 'RW'}, |
- {name: 'Saint Helena', code: 'SH'}, |
- {name: 'Saint Kitts and Nevis', code: 'KN'}, |
- {name: 'Saint Lucia', code: 'LC'}, |
- {name: 'Saint Pierre and Miquelon', code: 'PM'}, |
- {name: 'Saint Vincent and the Grenadines', code: 'VC'}, |
- {name: 'Samoa', code: 'WS'}, |
- {name: 'San Marino', code: 'SM'}, |
- {name: 'Sao Tome and Principe', code: 'ST'}, |
- {name: 'Saudi Arabia', code: 'SA'}, |
- {name: 'Senegal', code: 'SN'}, |
- {name: 'Serbia and Montenegro', code: 'CS'}, |
- {name: 'Seychelles', code: 'SC'}, |
- {name: 'Sierra Leone', code: 'SL'}, |
- {name: 'Singapore', code: 'SG'}, |
- {name: 'Slovakia', code: 'SK'}, |
- {name: 'Slovenia', code: 'SI'}, |
- {name: 'Solomon Islands', code: 'SB'}, |
- {name: 'Somalia', code: 'SO'}, |
- {name: 'South Africa', code: 'ZA'}, |
- {name: 'South Georgia and the South Sandwich Islands', code: 'GS'}, |
- {name: 'Spain', code: 'ES'}, |
- {name: 'Sri Lanka', code: 'LK'}, |
- {name: 'Sudan', code: 'SD'}, |
- {name: 'Suriname', code: 'SR'}, |
- {name: 'Svalbard and Jan Mayen', code: 'SJ'}, |
- {name: 'Swaziland', code: 'SZ'}, |
- {name: 'Sweden', code: 'SE'}, |
- {name: 'Switzerland', code: 'CH'}, |
- {name: 'Syrian Arab Republic', code: 'SY'}, |
- {name: 'Taiwan, Province of China', code: 'TW'}, |
- {name: 'Tajikistan', code: 'TJ'}, |
- {name: 'Tanzania, United Republic of', code: 'TZ'}, |
- {name: 'Thailand', code: 'TH'}, |
- {name: 'Timor-Leste', code: 'TL'}, |
- {name: 'Togo', code: 'TG'}, |
- {name: 'Tokelau', code: 'TK'}, |
- {name: 'Tonga', code: 'TO'}, |
- {name: 'Trinidad and Tobago', code: 'TT'}, |
- {name: 'Tunisia', code: 'TN'}, |
- {name: 'Turkey', code: 'TR'}, |
- {name: 'Turkmenistan', code: 'TM'}, |
- {name: 'Turks and Caicos Islands', code: 'TC'}, |
- {name: 'Tuvalu', code: 'TV'}, |
- {name: 'Uganda', code: 'UG'}, |
- {name: 'Ukraine', code: 'UA'}, |
- {name: 'United Arab Emirates', code: 'AE'}, |
- {name: 'United Kingdom', code: 'GB'}, |
- {name: 'United States', code: 'US'}, |
- {name: 'United States Minor Outlying Islands', code: 'UM'}, |
- {name: 'Uruguay', code: 'UY'}, |
- {name: 'Uzbekistan', code: 'UZ'}, |
- {name: 'Vanuatu', code: 'VU'}, |
- {name: 'Venezuela', code: 'VE'}, |
- {name: 'Viet Nam', code: 'VN'}, |
- {name: 'Virgin Islands, British', code: 'VG'}, |
- {name: 'Virgin Islands, U.S.', code: 'VI'}, |
- {name: 'Wallis and Futuna', code: 'WF'}, |
- {name: 'Western Sahara', code: 'EH'}, |
- {name: 'Yemen', code: 'YE'}, |
- {name: 'Zambia', code: 'ZM'}, |
- {name: 'Zimbabwe', code: 'ZW'} |
- ]; |
- |
- scope.pastries = [ |
- 'Apple fritter', |
- 'Croissant', |
- 'Donut', |
- 'Financier', |
- 'Jello', |
- 'Madeleine', |
- 'Pound cake', |
- 'Pretzel', |
- 'Sfogliatelle' |
- ]; |
- |
- </script> |
- |
-</body> |
-</html> |