mirror of
https://github.com/adnexus/shuttle-select.git
synced 2026-07-27 06:13:01 +00:00
357 lines
10 KiB
HTML
357 lines
10 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Shuttle Select Prototype</title>
|
|
<script charset='utf-8' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js' type='text/javascript'></script>
|
|
<script charset='utf-8' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js' type='text/javascript'></script>
|
|
<link charset='utf-8' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/themes/base/jquery-ui.css' rel='stylesheet' type='text/css' />
|
|
<link rel="stylesheet" href="/css/master.css" type="text/css" charset="utf-8" />
|
|
</head>
|
|
<body>
|
|
<div id="content-wrap">
|
|
<ul id="tabs"><!-- Just for show -->
|
|
<li>Frequency</li>
|
|
<li class="selected">Geography</li>
|
|
<li>Daypart</li>
|
|
<li>Segment</li>
|
|
<li>Demographic</li>
|
|
<li>Tag</li>
|
|
<li>System</li>
|
|
</ul>
|
|
<div id="geo-targeting" class="panel">
|
|
<div id="UNIQUE-NAME" class="shuttle-select">
|
|
<div class="included-list">
|
|
<h3>Impression must match ALL of the following criteria:</h3>
|
|
<ul></ul>
|
|
</div>
|
|
|
|
<form class="item-search" action="/search" method="get">
|
|
<input type="text" name="query" />
|
|
<button type="button">Search</button>
|
|
</form>
|
|
|
|
<div id="tier-1" class="tier">
|
|
<div class="title-bar">
|
|
<h3><div>All Locations</div></h3>
|
|
</div>
|
|
<div class="content">
|
|
<label for="UNIQUE-NAME-include-all"><input type="checkbox" name="include_all" id="UNIQUE-NAME-include-all" /> Include all</label>
|
|
<ul class="items">
|
|
<li>Africa <span class="arrows">>></span></li>
|
|
<li>Asia & Middle East <span class="arrows">>></span></li>
|
|
<li>Canada & United States <span class="arrows">>></span></li>
|
|
<li>Europe <span class="arrows">>></span></li>
|
|
<li>Latin America <span class="arrows">>></span></li>
|
|
<li>Oceania <span class="arrows">>></span></li>
|
|
<li>South America <span class="arrows">>></span></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
(function(){
|
|
var ShuttleSelect = function(element) {
|
|
var _$el = null;
|
|
|
|
var formatVerticalText = function() {
|
|
var title = _$el.find('.title-bar h3');
|
|
title.css({
|
|
left: -title.width() / 2 + 9 + 'px',
|
|
top: title.width() / 2 + 'px'
|
|
});
|
|
}
|
|
|
|
var formatItem = function(item) {
|
|
return '<li>'+item+' <span class="arrows">>></span></li>';
|
|
}
|
|
|
|
var buildItemList = function(items) {
|
|
|
|
}
|
|
|
|
this.init = function(element) {
|
|
_$el = $(element);
|
|
|
|
formatVerticalText();
|
|
}
|
|
}
|
|
|
|
$(function(){
|
|
var oShuttleSelect = new ShuttleSelect();
|
|
oShuttleSelect.init('#UNIQUE-NAME');
|
|
});
|
|
|
|
var countries = {
|
|
"Africa": [
|
|
"Algeria, People's Democratic Republic of",
|
|
"Angola, Republic of",
|
|
"Botswana, Republic of",
|
|
"Burundi, Republic of",
|
|
"Cameroon, Republic of",
|
|
"Cape Verde, Republic of",
|
|
"Central African Republic",
|
|
"Chad, Republic of",
|
|
"Comoros, Union of the",
|
|
"Mayotte",
|
|
"Congo, Republic of the",
|
|
"Congo, Democratic Republic of the",
|
|
"Benin, Republic of",
|
|
"Equatorial Guinea, Republic of",
|
|
"Ethiopia, Federal Democratic Republic of",
|
|
"Eritrea, State of",
|
|
"Djibouti, Republic of",
|
|
"Gabon, Gabonese Republic",
|
|
"Gambia, Republic of the",
|
|
"Ghana, Republic of",
|
|
"Guinea, Republic of",
|
|
"Cote d'Ivoire, Republic of",
|
|
"Kenya, Republic of",
|
|
"Lesotho, Kingdom of",
|
|
"Liberia, Republic of",
|
|
"Libyan Arab Jamahiriya",
|
|
"Madagascar, Republic of",
|
|
"Malawi, Republic of",
|
|
"Mali, Republic of",
|
|
"Mauritania, Islamic Republic of",
|
|
"Mauritius, Republic of",
|
|
"Morocco, Kingdom of",
|
|
"Mozambique, Republic of",
|
|
"Namibia, Republic of",
|
|
"Niger, Republic of",
|
|
"Nigeria, Federal Republic of",
|
|
"Guinea-Bissau, Republic of",
|
|
"Reunion",
|
|
"Rwanda, Republic of",
|
|
"Saint Helena",
|
|
"Sao Tome and Principe, Democratic Republic of",
|
|
"Senegal, Republic of",
|
|
"Seychelles, Republic of",
|
|
"Sierra Leone, Republic of",
|
|
"Somalia, Somali Republic",
|
|
"South Africa, Republic of",
|
|
"Zimbabwe, Republic of",
|
|
"Western Sahara",
|
|
"Sudan, Republic of",
|
|
"Swaziland, Kingdom of",
|
|
"Togo, Togolese Republic",
|
|
"Tunisia, Tunisian Republic",
|
|
"Uganda, Republic of",
|
|
"Egypt, Arab Republic of",
|
|
"Tanzania, United Republic of",
|
|
"Burkina Faso",
|
|
"Zambia, Republic of"
|
|
],
|
|
"Asia & Middle East": [
|
|
"Afghanistan, Islamic Republic of",
|
|
"Azerbaijan, Republic of",
|
|
"Bahrain, Kingdom of",
|
|
"Bangladesh, People's Republic of",
|
|
"Armenia, Republic of",
|
|
"Bhutan, Kingdom of",
|
|
"British Indian Ocean Territory (Chagos Archipelago)",
|
|
"Brunei Darussalam",
|
|
"Myanmar, Union of",
|
|
"Cambodia, Kingdom of",
|
|
"Sri Lanka, Democratic Socialist Republic of",
|
|
"China, People's Republic of",
|
|
"Taiwan",
|
|
"Christmas Island",
|
|
"Cocos (Keeling) Islands",
|
|
"Cyprus, Republic of",
|
|
"Georgia",
|
|
"Palestinian Territory, Occupied",
|
|
"Hong Kong, Special Administrative Region of China",
|
|
"India, Republic of",
|
|
"Indonesia, Republic of",
|
|
"Iran, Islamic Republic of",
|
|
"Iraq, Republic of",
|
|
"Israel, State of",
|
|
"Japan",
|
|
"Kazakhstan, Republic of",
|
|
"Jordan, Hashemite Kingdom of",
|
|
"Korea, Democratic People's Republic of",
|
|
"Korea, Republic of",
|
|
"Kuwait, State of",
|
|
"Kyrgyz Republic",
|
|
"Lao People's Democratic Republic",
|
|
"Lebanon, Lebanese Republic",
|
|
"Macao, Special Administrative Region of China",
|
|
"Malaysia",
|
|
"Maldives, Republic of",
|
|
"Mongolia",
|
|
"Oman, Sultanate of",
|
|
"Nepal, State of",
|
|
"Pakistan, Islamic Republic of",
|
|
"Philippines, Republic of the",
|
|
"Timor-Leste, Democratic Republic of",
|
|
"Qatar, State of",
|
|
"Russian Federation",
|
|
"Saudi Arabia, Kingdom of",
|
|
"Singapore, Republic of",
|
|
"Vietnam, Socialist Republic of",
|
|
"Syrian Arab Republic",
|
|
"Tajikistan, Republic of",
|
|
"Thailand, Kingdom of",
|
|
"United Arab Emirates",
|
|
"Turkey, Republic of",
|
|
"Turkmenistan",
|
|
"Uzbekistan, Republic of",
|
|
"Yemen"
|
|
],
|
|
"Europe": [
|
|
"Albania, Republic of",
|
|
"Andorra, Principality of",
|
|
"Azerbaijan, Republic of",
|
|
"Austria, Republic of",
|
|
"Armenia, Republic of",
|
|
"Belgium, Kingdom of",
|
|
"Bosnia and Herzegovina",
|
|
"Bulgaria, Republic of",
|
|
"Belarus, Republic of",
|
|
"Croatia, Republic of",
|
|
"Cyprus, Republic of",
|
|
"Czech Republic",
|
|
"Denmark, Kingdom of",
|
|
"Estonia, Republic of",
|
|
"Faroe Islands",
|
|
"Finland, Republic of",
|
|
"Åland Islands",
|
|
"France, French Republic",
|
|
"Georgia",
|
|
"Germany, Federal Republic of",
|
|
"Gibraltar",
|
|
"Greece, Hellenic Republic",
|
|
"Holy See (Vatican City State)",
|
|
"Hungary, Republic of",
|
|
"Iceland, Republic of",
|
|
"Ireland",
|
|
"Italy, Italian Republic",
|
|
"Kazakhstan, Republic of",
|
|
"Latvia, Republic of",
|
|
"Liechtenstein, Principality of",
|
|
"Lithuania, Republic of",
|
|
"Luxembourg, Grand Duchy of",
|
|
"Malta, Republic of",
|
|
"Monaco, Principality of",
|
|
"Moldova, Republic of",
|
|
"Montenegro, Republic of",
|
|
"Netherlands, Kingdom of the",
|
|
"Norway, Kingdom of",
|
|
"Poland, Republic of",
|
|
"Portugal, Portuguese Republic",
|
|
"Romania",
|
|
"Russian Federation",
|
|
"San Marino, Republic of",
|
|
"Serbia, Republic of",
|
|
"Slovakia (Slovak Republic)",
|
|
"Slovenia, Republic of",
|
|
"Spain, Kingdom of",
|
|
"Svalbard & Jan Mayen Islands",
|
|
"Sweden, Kingdom of",
|
|
"Switzerland, Swiss Confederation",
|
|
"Turkey, Republic of",
|
|
"Ukraine",
|
|
"Macedonia, Republic of",
|
|
"United Kingdom of Great Britain & Northern Ireland",
|
|
"Guernsey, Bailiwick of",
|
|
"Jersey, Bailiwick of",
|
|
"Isle of Man"
|
|
],
|
|
"North America": [
|
|
"Antigua and Barbuda",
|
|
"Bahamas, Commonwealth of the",
|
|
"Barbados",
|
|
"Bermuda",
|
|
"Belize",
|
|
"British Virgin Islands",
|
|
"Canada",
|
|
"Cayman Islands",
|
|
"Costa Rica, Republic of",
|
|
"Cuba, Republic of",
|
|
"Dominica, Commonwealth of",
|
|
"Dominican Republic",
|
|
"El Salvador, Republic of",
|
|
"Greenland",
|
|
"Grenada",
|
|
"Guadeloupe",
|
|
"Guatemala, Republic of",
|
|
"Haiti, Republic of",
|
|
"Honduras, Republic of",
|
|
"Jamaica",
|
|
"Martinique",
|
|
"Mexico, United Mexican States",
|
|
"Montserrat",
|
|
"Netherlands Antilles",
|
|
"Curaçao",
|
|
"Aruba",
|
|
"Sint Maarten (Netherlands)",
|
|
"Bonaire, Saint Eustatius and Saba",
|
|
"Nicaragua, Republic of",
|
|
"United States Minor Outlying Islands",
|
|
"Panama, Republic of",
|
|
"Puerto Rico, Commonwealth of",
|
|
"Saint Barthelemy",
|
|
"Saint Kitts and Nevis, Federation of",
|
|
"Anguilla",
|
|
"Saint Lucia",
|
|
"Saint Martin",
|
|
"Saint Pierre and Miquelon",
|
|
"Saint Vincent and the Grenadines",
|
|
"Trinidad and Tobago, Republic of",
|
|
"Turks and Caicos Islands",
|
|
"United States of America",
|
|
"United States Virgin Islands"
|
|
],
|
|
"Oceania": [
|
|
"American Samoa",
|
|
"Australia, Commonwealth of",
|
|
"Solomon Islands",
|
|
"Cook Islands",
|
|
"Fiji, Republic of the Fiji Islands",
|
|
"French Polynesia",
|
|
"Kiribati, Republic of",
|
|
"Guam",
|
|
"Nauru, Republic of",
|
|
"New Caledonia",
|
|
"Vanuatu, Republic of",
|
|
"New Zealand",
|
|
"Niue",
|
|
"Norfolk Island",
|
|
"Northern Mariana Islands, Commonwealth of the",
|
|
"United States Minor Outlying Islands",
|
|
"Micronesia, Federated States of",
|
|
"Marshall Islands, Republic of the",
|
|
"Palau, Republic of",
|
|
"Papua New Guinea, Independent State of",
|
|
"Pitcairn Islands",
|
|
"Tokelau",
|
|
"Tonga, Kingdom of",
|
|
"Tuvalu",
|
|
"Wallis and Futuna",
|
|
"Samoa, Independent State of"
|
|
],
|
|
"South America": [
|
|
"Argentina, Argentine Republic",
|
|
"Bolivia, Republic of",
|
|
"Brazil, Federative Republic of",
|
|
"Chile, Republic of",
|
|
"Colombia, Republic of",
|
|
"Ecuador, Republic of",
|
|
"Falkland Islands (Malvinas)",
|
|
"French Guiana",
|
|
"Guyana, Co-operative Republic of",
|
|
"Paraguay, Republic of",
|
|
"Peru, Republic of",
|
|
"Suriname, Republic of",
|
|
"Uruguay, Eastern Republic of",
|
|
"Venezuela, Bolivarian Republic of"
|
|
]
|
|
};
|
|
})();
|
|
</script>
|
|
</html>
|