code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
(function ($) {
/**
* Attaches the autocomplete behavior to all required fields.
*/
Drupal.behaviors.autocomplete = {
attach: function (context, settings) {
var acdb = [];
$('input.autocomplete', context).once('autocomplete', function () {
var uri = this.value;
if (!acdb[uri]) {
... | JavaScript |
(function ($) {
/**
* This script transforms a set of fieldsets into a stack of vertical
* tabs. Another tab pane can be selected by clicking on the respective
* tab.
*
* Each tab may have a summary which can be updated by another
* script. For that to work, each fieldset has an associated
* 'vertica... | JavaScript |
(function ($) {
/**
* Set the client's system time zone as default values of form fields.
*/
Drupal.behaviors.setTimezone = {
attach: function (context, settings) {
$('select.timezone-detect', context).once('timezone', function () {
var dateString = Date();
// In some client environments, ... | JavaScript |
(function ($) {
/**
* Toggle the visibility of a fieldset using smooth animations.
*/
Drupal.toggleFieldset = function (fieldset) {
var $fieldset = $(fieldset);
if ($fieldset.is('.collapsed')) {
var $content = $('> .fieldset-wrapper', fieldset).hide();
$fieldset
.removeClass('collapsed')
... | JavaScript |
(function ($) {
/**
* Attaches sticky table headers.
*/
Drupal.behaviors.tableHeader = {
attach: function (context, settings) {
if (!$.support.positionFixed) {
return;
}
$('table.sticky-enabled', context).once('tableheader', function () {
$(this).data("drupal-tableheader", new ... | JavaScript |
/**
* Cookie plugin 1.0
*
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
*/
jQuery.cookie=function(b,j,m){if(typeof j!="undefined"){m=m||{};if(j===null){j="";... | JavaScript |
(function ($) {
/**
* Provides Ajax page updating via jQuery $.ajax (Asynchronous JavaScript and XML).
*
* Ajax is a method of making a request via JavaScript while viewing an HTML
* page. The request returns an array of commands encoded in JSON, which is
* then executed to make any changes that are necess... | JavaScript |
(function ($) {
Drupal.behaviors.menuFieldsetSummaries = {
attach: function (context) {
$('fieldset.menu-link-form', context).drupalSetSummary(function (context) {
if ($('.form-item-menu-enabled input', context).is(':checked')) {
return Drupal.checkPlain($('.form-item-menu-link-title input', ... | JavaScript |
(function ($) {
Drupal.behaviors.menuChangeParentItems = {
attach: function (context, settings) {
$('fieldset#edit-menu input').each(function () {
$(this).change(function () {
// Update list of available parent menu items.
Drupal.menu_update_parent_list();
});
});
}
}... | JavaScript |
Drupal.t("Standard Call t");
Drupal
.
t
(
"Whitespace Call t"
)
;
Drupal.t('Single Quote t');
Drupal.t('Single Quote \'Escaped\' t');
Drupal.t('Single Quote ' + 'Concat ' + 'strings ' + 't');
Drupal.t("Double Quote t");
Drupal.t("Double Quote \"Escaped\" t");
Drupal.t("Double Quote " + "Concat " + "s... | JavaScript |
(function ($) {
/**
* Attaches language support to the jQuery UI datepicker component.
*/
Drupal.behaviors.localeDatepicker = {
attach: function(context, settings) {
// This code accesses Drupal.settings and localized strings via Drupal.t().
// So this code should run after these are initialized. B... | JavaScript |
(function ($) {
Drupal.toolbar = Drupal.toolbar || {};
/**
* Attach toggling behavior and notify the overlay of the toolbar.
*/
Drupal.behaviors.toolbar = {
attach: function(context) {
// Set the initial state of the toolbar.
$('#toolbar', context).once('toolbar', Drupal.toolbar.init);
... | JavaScript |
/**
* @file
* Javascript behaviors for the Book module.
*/
(function ($) {
Drupal.behaviors.bookFieldsetSummaries = {
attach: function (context) {
$('fieldset.book-outline-form', context).drupalSetSummary(function (context) {
var $select = $('.form-item-book-bid select');
var val = $... | JavaScript |
/**
* @file
* Attaches the behaviors for the Field UI module.
*/
(function($) {
Drupal.behaviors.fieldUIFieldOverview = {
attach: function (context, settings) {
$('table#field-overview', context).once('field-overview', function () {
Drupal.fieldUIFieldOverview.attachUpdateSelects(this, setti... | JavaScript |
/**
* @file
* Attaches behaviors for the Contextual module.
*/
(function ($) {
Drupal.contextualLinks = Drupal.contextualLinks || {};
/**
* Attaches outline behavior for regions associated with contextual links.
*/
Drupal.behaviors.contextualLinks = {
attach: function (context) {
$('div.cont... | JavaScript |
(function ($) {
/**
* Auto-hide summary textarea if empty and show hide and unhide links.
*/
Drupal.behaviors.textSummary = {
attach: function (context, settings) {
$('.text-summary', context).once('text-summary', function () {
var $widget = $(this).closest('div.field-type-text-with-summary');
... | JavaScript |
(function ($) {
/**
* Attach handlers to evaluate the strength of any password fields and to check
* that its confirmation is correct.
*/
Drupal.behaviors.password = {
attach: function (context, settings) {
var translate = settings.password;
$('input.password-field', context).once('password', fun... | JavaScript |
(function ($) {
/**
* Shows checked and disabled checkboxes for inherited permissions.
*/
Drupal.behaviors.permissions = {
attach: function (context) {
var self = this;
$('table#permissions').once('permissions', function () {
// On a site with many roles and permissions, this behavior initia... | JavaScript |
(function ($) {
/**
* Provide the summary information for the block settings vertical tabs.
*/
Drupal.behaviors.blockSettingsSummary = {
attach: function (context) {
// The drupalSetSummary method required for this behavior is not available
// on the Blocks administration page, so we need to make s... | JavaScript |
/**
* @file
* Attaches the behaviors for the Color module.
*/
(function ($) {
Drupal.behaviors.color = {
attach: function (context, settings) {
var i, j, colors, field_name;
// This behavior attaches by ID, so is only valid once on a page.
var form = $('#system-theme-settings .color-form',... | JavaScript |
/**
* @file
* Attaches preview-related behavior for the Color module.
*/
(function ($) {
Drupal.color = {
callback: function(context, settings, form, farb, height, width) {
// Solid background.
$('#preview', form).css('backgroundColor', $('#palette input[name="palette[base]"]', form).val(... | JavaScript |
/**
* @file
* Attaches behaviors for the Path module.
*/
(function ($) {
Drupal.behaviors.pathFieldsetSummaries = {
attach: function (context) {
$('fieldset.path-form', context).drupalSetSummary(function (context) {
var path = $('.form-item-path-alias input').val();
return path ?
... | JavaScript |
(function ($) {
/**
* Handle the concept of a fixed number of slots.
*
* This behavior is dependent on the tableDrag behavior, since it uses the
* objects initialized in that behavior to update the row.
*/
Drupal.behaviors.shortcutDrag = {
attach: function (context, settings) {
if (Drupal.tableDra... | JavaScript |
(function ($) {
Drupal.behaviors.contentTypes = {
attach: function (context) {
// Provide the vertical tab summaries.
$('fieldset#edit-submission', context).drupalSetSummary(function(context) {
var vals = [];
vals.push(Drupal.checkPlain($('#edit-title-label', context).val()) || Drupal.t('R... | JavaScript |
(function ($) {
Drupal.behaviors.nodeFieldsetSummaries = {
attach: function (context) {
$('fieldset.node-form-revision-information', context).drupalSetSummary(function (context) {
var revisionCheckbox = $('.form-item-revision input', context);
// Return 'New revision' if the 'Create new rev... | JavaScript |
(function ($) {
/**
* Show/hide the 'Email site administrator when updates are available' checkbox
* on the install page.
*/
Drupal.hideEmailAdministratorCheckbox = function () {
// Make sure the secondary box is shown / hidden as necessary on page load.
if ($('#edit-update-status-module-1').is(':checke... | JavaScript |
(function ($) {
/**
* Checks to see if the cron should be automatically run.
*/
Drupal.behaviors.cronCheck = {
attach: function(context, settings) {
if (settings.cronCheck || false) {
$('body').once('cron-check', function() {
// Only execute the cron check if its the right time.
... | JavaScript |
(function ($) {
/**
* Add functionality to the profile drag and drop table.
*
* This behavior is dependent on the tableDrag behavior, since it uses the
* objects initialized in that behavior to update the row. It shows and hides
* a warning message when removing the last field from a profile category.
*/... | JavaScript |
/**
* @file
* Provides JavaScript additions to the managed file field type.
*
* This file provides progress bar support (if available), popup windows for
* file previews, and disabling of other file fields during Ajax uploads (which
* prevents separate file fields from accidentally uploading files).
*/
... | JavaScript |
(function ($) {
/**
* Add the cool table collapsing on the testing overview page.
*/
Drupal.behaviors.simpleTestMenuCollapse = {
attach: function (context, settings) {
var timeout = null;
// Adds expand-collapse functionality.
$('div.simpletest-image').once('simpletest-image', function () {
... | JavaScript |
(function ($) {
/**
* Move a block in the blocks table from one region to another via select list.
*
* This behavior is dependent on the tableDrag behavior, since it uses the
* objects initialized in that behavior to update the row.
*/
Drupal.behaviors.termDrag = {
attach: function (context, settings) ... | JavaScript |
(function ($) {
Drupal.behaviors.commentFieldsetSummaries = {
attach: function (context) {
$('fieldset.comment-node-settings-form', context).drupalSetSummary(function (context) {
return Drupal.checkPlain($('.form-item-comment input:checked', context).next('label').text());
});
// Provide... | JavaScript |
(function ($) {
Drupal.behaviors.openid = {
attach: function (context) {
var loginElements = $('.form-item-name, .form-item-pass, li.openid-link');
var openidElements = $('.form-item-openid-identifier, li.user-link');
var cookie = $.cookie('Drupal.visitor.openid_identifier');
// This behavio... | JavaScript |
/**
* @file
* Attaches the behaviors for the Overlay parent pages.
*/
(function ($) {
/**
* Open the overlay, or load content into it, when an admin link is clicked.
*/
Drupal.behaviors.overlayParent = {
attach: function (context, settings) {
if (Drupal.overlay.isOpen) {
Drupal.overlay.m... | JavaScript |
/**
* @file
* Attaches the behaviors for the Overlay child pages.
*/
(function ($) {
/**
* Attach the child dialog behavior to new content.
*/
Drupal.behaviors.overlayChild = {
attach: function (context, settings) {
// Make sure this behavior is not processed more than once.
if (this.proce... | JavaScript |
(function ($) {
Drupal.behaviors.filterStatus = {
attach: function (context, settings) {
$('#filters-status-wrapper input.form-checkbox', context).once('filter-status', function () {
var $checkbox = $(this);
// Retrieve the tabledrag row belonging to this filter.
var $row = $('#' + $chec... | JavaScript |
(function ($) {
/**
* Automatically display the guidelines of the selected text format.
*/
Drupal.behaviors.filterGuidelines = {
attach: function (context) {
$('.filter-guidelines', context).once('filter-guidelines')
.find(':header').hide()
.closest('.filter-wrapper').find('select.filter-l... | JavaScript |
/**
* @file
* Attaches behaviors for the Dashboard module.
*/
(function ($) {
/**
* Implements Drupal.behaviors for the Dashboard module.
*/
Drupal.behaviors.dashboard = {
attach: function (context, settings) {
$('#dashboard', context).once(function () {
$(this).prepend('<div class="cu... | JavaScript |
(function ($) {
Drupal.color = {
logoChanged: false,
callback: function(context, settings, form, farb, height, width) {
// Change the logo to be the real one.
if (!this.logoChanged) {
$('#preview #preview-logo img').attr('src', Drupal.settings.color.logo);
this.logoChanged... | JavaScript |
jQuery(document).ready(function(){var timing=new Date();var ak_js=document.getElementById('ak_js');if(ak_js){ak_js.value=timing.getTime();return;}
var input='<input type="hidden" id="ak_js" name="ak_js" value="'
+timing.getTime()+'"/>';var div=document.createElement('div');div.innerHTML=input
jQuery('#commentform').app... | JavaScript |
jQuery(document).ready(function(){var timing=new Date();var ak_js=document.getElementById('ak_js');if(ak_js){ak_js.value=timing.getTime();return;}
var input='<input type="hidden" id="ak_js" name="ak_js" value="'
+timing.getTime()+'"/>';var div=document.createElement('div');div.innerHTML=input
jQuery('#commentform').app... | JavaScript |
jQuery(document).ready(function(){var timing=new Date();var ak_js=document.getElementById('ak_js');if(ak_js){ak_js.value=timing.getTime();return;}
var input='<input type="hidden" id="ak_js" name="ak_js" value="'
+timing.getTime()+'"/>';var div=document.createElement('div');div.innerHTML=input
jQuery('#commentform').app... | JavaScript |
// voter-info-egypt.js
// By Michael Geary - http://mg.to/
// See UNLICENSE or http://unlicense.org/ for public domain notice.
// Language and prefs
var given_cid;
function submitNID(){
if ((document.location.href.indexOf('cms=') > 0)
&& !(document.location.href.indexOf('nid=') > 0)
&& !(document.location.... | JavaScript |
// voter-info-main.js
// By Michael Geary - http://mg.to/
// See UNLICENSE or http://unlicense.org/ for public domain notice.
//window.console && typeof console.log == 'function' && console.log( location.href );
// Utility functions and jQuery extensions
var $window = $(window), $body = $('body');
// Return window w... | JavaScript |
// voter-info-usa.js
// By Michael Geary - http://mg.to/
// See UNLICENSE or http://unlicense.org/ for public domain notice.
// Language and prefs
var defaultLanguage = 'en';
var supportedLanguages = {
en: 'English',
//es: 'Español',
_: null
};
var prefs = new _IG_Prefs();
var pref = {
country: pr... | JavaScript |
GoogleElectionMap.shapeReady({name:"205_2577",type:"state",state:"205_2577",bounds:[],centroid:[],shapes:[
{points:[
{x:32.5308589836112,y: 26.1141771369437}
,
{x:32.532084202232,y: 26.1137285753556}
,
{x:32.5339893261703,y: 26.1132208402945}
,
{x:32.5345436278273,y: 26.1131189138865}
,
{x:32.5351371204291,y: 26.113009... | JavaScript |
GoogleElectionMap.shapeReady({name:"31_06",type:"state",state:"31_06",bounds:[],centroid:[],shapes:[
{points:[
{x:35.6692381388835,y: 22.9779897043859}
,
{x:35.6726158283686,y: 22.9710406752615}
,
{x:35.6735628842817,y: 22.967689613437}
,
{x:35.6704476756037,y: 22.9663461011331}
,
{x:35.667515149795,y: 22.9694914755857... | JavaScript |
GoogleElectionMap.shapeReady({name:"78_1031",type:"state",state:"78_1031",bounds:[],centroid:[],shapes:[
{points:[
{x:31.5899795454442,y: 30.7024896219672}
,
{x:31.5899856258648,y: 30.7022440606716}
,
{x:31.5914678735162,y: 30.7027123255573}
,
{x:31.5915657631722,y: 30.7027432504711}
,
{x:31.5915887256572,y: 30.7017945... | JavaScript |
GoogleElectionMap.shapeReady({name:"22_09",type:"state",state:"22_09",bounds:[],centroid:[],shapes:[
{points:[
{x:31.157402590108,y: 29.1199276630626}
,
{x:31.1566521434652,y: 29.1197431625823}
,
{x:31.1558584622793,y: 29.1197583605029}
,
{x:31.1553933949068,y: 29.1197984068592}
,
{x:31.1550737626331,y: 29.119825928807... | JavaScript |
GoogleElectionMap.shapeReady({name:"108_1414",type:"state",state:"108_1414",bounds:[],centroid:[],shapes:[
{points:[
{x:30.9607001444256,y: 31.0422953368638}
,
{x:30.9602182340183,y: 31.0384316780493}
,
{x:30.9624056696923,y: 31.0389585025219}
,
{x:30.9662242634814,y: 31.0397533599566}
,
{x:30.9669202617085,y: 31.04114... | JavaScript |
GoogleElectionMap.shapeReady({name:"213_3247",type:"state",state:"213_3247",bounds:[],centroid:[],shapes:[
{points:[
{x:32.8997634277811,y: 24.3614365195794}
,
{x:32.8996498409125,y: 24.3612384734985}
,
{x:32.8996324571396,y: 24.3612403920995}
,
{x:32.899352771586,y: 24.3612712600226}
,
{x:32.899274455821,y: 24.3612799... | JavaScript |
GoogleElectionMap.shapeReady({name:"19_3751",type:"state",state:"19_3751",bounds:[],centroid:[],shapes:[
{points:[
{x:31.6675702870128,y: 30.1107083312244}
,
{x:31.6691450262222,y: 30.1099241371885}
,
{x:31.6723649253638,y: 30.109973212561}
,
{x:31.6939371910402,y: 30.1102999674875}
,
{x:31.696586251541,y: 30.110339848... | JavaScript |
GoogleElectionMap.shapeReady({name:"108_1341",type:"state",state:"108_1341",bounds:[],centroid:[],shapes:[
{points:[
{x:31.1571747992389,y: 30.8765529401183}
,
{x:31.1579967145573,y: 30.8760797577066}
,
{x:31.1568996729752,y: 30.875405581538}
,
{x:31.1552854037435,y: 30.8747240427503}
,
{x:31.1531336796559,y: 30.874273... | JavaScript |
GoogleElectionMap.shapeReady({name:"94_4014",type:"state",state:"94_4014",bounds:[],centroid:[],shapes:[
{points:[
{x:30.9252407024383,y: 31.1107199427688}
,
{x:30.9239812860714,y: 31.1104853428904}
,
{x:30.9240551713508,y: 31.1133018594054}
,
{x:30.9240788390192,y: 31.1150760376278}
,
{x:30.924158407118,y: 31.11762237... | JavaScript |
GoogleElectionMap.shapeReady({name:"27_434",type:"state",state:"27_434",bounds:[],centroid:[],shapes:[
{points:[
{x:29.8910913934127,y: 31.200106613569}
,
{x:29.8910222255336,y: 31.1997130844498}
,
{x:29.8910299588362,y: 31.1997142281642}
,
{x:29.8910987779961,y: 31.2001057534399}
,
{x:29.8910995903027,y: 31.2001103878... | JavaScript |
GoogleElectionMap.shapeReady({name:"221_3727",type:"state",state:"221_3727",bounds:[],centroid:[],shapes:[
{points:[
{x:33.6766265404325,y: 27.3733031007965}
,
{x:33.6791999301845,y: 27.3719274024594}
,
{x:33.6829310114431,y: 27.3734213605381}
,
{x:33.6838599083569,y: 27.3722364858605}
,
{x:33.6848336250788,y: 27.36991... | JavaScript |
GoogleElectionMap.shapeReady({name:"116_1511",type:"state",state:"116_1511",bounds:[],centroid:[],shapes:[
{points:[
{x:30.8474902671009,y: 30.3980497014101}
,
{x:30.8473461474689,y: 30.3978938512595}
,
{x:30.8473324165354,y: 30.3978946857301}
,
{x:30.8469324882643,y: 30.3979190041384}
,
{x:30.8464707955482,y: 30.39811... | JavaScript |
GoogleElectionMap.shapeReady({name:"19_248",type:"state",state:"19_248",bounds:[],centroid:[],shapes:[
{points:[
{x:31.3131968480702,y: 30.1421539785211}
,
{x:31.3136668099551,y: 30.1421464174332}
,
{x:31.3142047288024,y: 30.1421352253651}
,
{x:31.314700972536,y: 30.142118898091}
,
{x:31.3149818487314,y: 30.14208993524... | JavaScript |
GoogleElectionMap.shapeReady({name:"205_2518",type:"state",state:"205_2518",bounds:[],centroid:[],shapes:[
{points:[
{x:32.7766336717048,y: 26.0326304109871}
,
{x:32.7768609371642,y: 26.0317824017981}
,
{x:32.7770738522092,y: 26.0308225704873}
,
{x:32.7771774012554,y: 26.0295946131713}
,
{x:32.7771780974843,y: 26.02958... | JavaScript |
GoogleElectionMap.shapeReady({name:"19_167",type:"state",state:"19_167",bounds:[],centroid:[],shapes:[
{points:[
{x:31.2699450541191,y: 30.0723670449473}
,
{x:31.2700630589511,y: 30.0716540113059}
,
{x:31.270288980633,y: 30.0715089246946}
,
{x:31.269954301892,y: 30.0707106810167}
,
{x:31.2698467019632,y: 30.07034768535... | JavaScript |
GoogleElectionMap.shapeReady({name:"175_2216",type:"state",state:"175_2216",bounds:[],centroid:[],shapes:[
{points:[
{x:30.8692783267129,y: 27.7169839921741}
,
{x:30.8693187277885,y: 27.716764158225}
,
{x:30.8693763412597,y: 27.7166806168236}
,
{x:30.8695099083705,y: 27.7164869398502}
,
{x:30.8699954530513,y: 27.715934... | JavaScript |
GoogleElectionMap.shapeReady({name:"86_4448",type:"state",state:"86_4448",bounds:[],centroid:[],shapes:[
{points:[
{x:31.3627658427674,y: 30.2319840991365}
,
{x:31.3627980927067,y: 30.2319767004308}
,
{x:31.3630395452547,y: 30.2323789398537}
,
{x:31.3633893596284,y: 30.2323685756698}
,
{x:31.3669781421966,y: 30.2322621... | JavaScript |
GoogleElectionMap.shapeReady({name:"61_795",type:"state",state:"61_795",bounds:[],centroid:[],shapes:[
{points:[
{x:31.9708488490752,y: 31.2227105261177}
,
{x:31.9717686490704,y: 31.2225095663552}
,
{x:31.9728325114225,y: 31.2225985308252}
,
{x:31.9738091009515,y: 31.2226864220545}
,
{x:31.973827503204,y: 31.2226381032... | JavaScript |
GoogleElectionMap.shapeReady({name:"116_1465",type:"state",state:"116_1465",bounds:[],centroid:[],shapes:[
{points:[
{x:31.097234950697,y: 30.3734199989999}
,
{x:31.0970499162261,y: 30.3734173037999}
,
{x:31.0969610502626,y: 30.373485589642}
,
{x:31.0969600701089,y: 30.3734863431059}
,
{x:31.0968746254521,y: 30.3737089... | JavaScript |
GoogleElectionMap.shapeReady({name:"221_2721",type:"state",state:"221_2721",bounds:[],centroid:[],shapes:[
{points:[
{x:32.6511307261233,y: 29.0754489827527}
,
{x:32.6499204439363,y: 29.0723612727694}
,
{x:32.6497312838525,y: 29.0669656186807}
,
{x:32.648395350206,y: 29.0643356202223}
,
{x:32.6469458171087,y: 29.063314... | JavaScript |
GoogleElectionMap.shapeReady({name:"24_04",type:"state",state:"24_04",bounds:[],centroid:[],shapes:[
{points:[
{x:30.8323751707326,y: 27.8208837032777}
,
{x:30.8326979395346,y: 27.8208152884062}
,
{x:30.8331286016502,y: 27.8208628736842}
,
{x:30.8333954772136,y: 27.8208344037089}
,
{x:30.8336538216308,y: 27.82077314012... | JavaScript |
GoogleElectionMap.shapeReady({name:"183_3808",type:"state",state:"183_3808",bounds:[],centroid:[],shapes:[
{points:[
{x:31.3086029669814,y: 27.0655500771128}
,
{x:31.3087735909104,y: 27.0655369698811}
,
{x:31.308958490664,y: 27.0655429295514}
,
{x:31.309114997345,y: 27.0655680513524}
,
{x:31.3092787568447,y: 27.0656440... | JavaScript |
GoogleElectionMap.shapeReady({name:"27_02",type:"state",state:"27_02",bounds:[],centroid:[],shapes:[
{points:[
{x:32.7792461827115,y: 26.0325739767549}
,
{x:32.7794662860014,y: 26.0317183609355}
,
{x:32.779669461474,y: 26.0307481856462}
,
{x:32.7796990816286,y: 26.0298003010422}
,
{x:32.7796996233924,y: 26.029792501403... | JavaScript |
GoogleElectionMap.shapeReady({name:"26_02",type:"state",state:"26_02",bounds:[],centroid:[],shapes:[
{points:[
{x:31.7041927908193,y: 26.5623777194978}
,
{x:31.7039178441991,y: 26.5620142482494}
,
{x:31.7039050973,y: 26.562023990866}
,
{x:31.7038085050581,y: 26.5620978235767}
,
{x:31.7038036677213,y: 26.5621015215049}
... | JavaScript |
GoogleElectionMap.shapeReady({name:"34_05",type:"state",state:"34_05",bounds:[],centroid:[],shapes:[
{points:[
{x:32.9104008094667,y: 31.0905364070339}
,
{x:32.9106012303714,y: 31.0879979634725}
,
{x:32.9119352132349,y: 31.0879628506798}
,
{x:32.9119417726465,y: 31.0879596048989}
,
{x:32.911986825577,y: 31.087791753563... | JavaScript |
GoogleElectionMap.shapeReady({name:"248_2861",type:"state",state:"248_2861",bounds:[],centroid:[],shapes:[
{points:[
{x:25.9683406471384,y: 30.918614057809}
,
{x:26.1818925463481,y: 30.8529193527787}
,
{x:26.2784623275324,y: 30.8579919508607}
,
{x:26.2903430629976,y: 30.8560774821054}
,
{x:26.3086281115461,y: 30.853128... | JavaScript |
GoogleElectionMap.shapeReady({name:"24_03",type:"state",state:"24_03",bounds:[],centroid:[],shapes:[
{points:[
{x:30.8492093380183,y: 28.0951345305049}
,
{x:30.850301023028,y: 28.0871183044803}
,
{x:30.8569344605406,y: 28.0423502582035}
,
{x:30.8401026457883,y: 28.0406799831762}
,
{x:30.8392222487294,y: 28.041942098252... | JavaScript |
GoogleElectionMap.shapeReady({name:"175_2143",type:"state",state:"175_2143",bounds:[],centroid:[],shapes:[
{points:[
{x:30.8324121707326,y: 27.8164527032777}
,
{x:30.8327349395346,y: 27.8163842884062}
,
{x:30.8331656016502,y: 27.8164318736842}
,
{x:30.8334324772136,y: 27.8164034037089}
,
{x:30.8336908216308,y: 27.81634... | JavaScript |
GoogleElectionMap.shapeReady({name:"213_2658",type:"state",state:"213_2658",bounds:[],centroid:[],shapes:[
{points:[
{x:32.9324171143444,y: 23.7534828750075}
,
{x:32.9321442649155,y: 23.7534020177862}
,
{x:32.9319394885957,y: 23.7536082578981}
,
{x:32.9320271104783,y: 23.7537877140716}
,
{x:32.932028904138,y: 23.753788... | JavaScript |
GoogleElectionMap.shapeReady({name:"116_1473",type:"state",state:"116_1473",bounds:[],centroid:[],shapes:[
{points:[
{x:30.8371339704368,y: 30.581237814578}
,
{x:30.83713465399,y: 30.5812282080869}
,
{x:30.8371272571441,y: 30.5812328372148}
,
{x:30.8371339704368,y: 30.581237814578}
]}
,
{points:[
{x:30.7912142703342,y:... | JavaScript |
GoogleElectionMap.shapeReady({name:"213_3948",type:"state",state:"213_3948",bounds:[],centroid:[],shapes:[
{points:[
{x:32.9212767499872,y: 24.1133365811455}
,
{x:32.9212792930635,y: 24.1091777753714}
,
{x:32.9212906926591,y: 24.0905238817165}
,
{x:32.9212944708239,y: 24.0843372264375}
,
{x:32.936051747208,y: 24.084348... | JavaScript |
GoogleElectionMap.shapeReady({name:"124_1708",type:"state",state:"124_1708",bounds:[],centroid:[],shapes:[
{points:[
{x:30.6080990046838,y: 31.1660117951508}
,
{x:30.6090884948576,y: 31.1644349041417}
,
{x:30.6096033496618,y: 31.1634362515235}
,
{x:30.610157569019,y: 31.1626425231648}
,
{x:30.6107603434209,y: 31.161096... | JavaScript |
GoogleElectionMap.shapeReady({name:"32_02",type:"state",state:"32_02",bounds:[],centroid:[],shapes:[
{points:[
{x:29.1928184468115,y: 25.499033948074}
,
{x:29.1903672843845,y: 25.4970740910391}
,
{x:29.1861070324766,y: 25.4973320450885}
,
{x:29.1833355963793,y: 25.4931169015226}
,
{x:29.1858677856384,y: 25.489943230319... | JavaScript |
GoogleElectionMap.shapeReady({name:"32_01",type:"state",state:"32_01",bounds:[],centroid:[],shapes:[
{points:[
{x:30.666904001375,y: 25.5924151947867}
,
{x:30.6650661775671,y: 25.5912473636835}
,
{x:30.6647100604158,y: 25.5912465440796}
,
{x:30.663688183876,y: 25.5853977653939}
,
{x:30.665377121376,y: 25.5766791943426}... | JavaScript |
GoogleElectionMap.shapeReady({name:"21_07",type:"state",state:"21_07",bounds:[],centroid:[],shapes:[
{points:[
{x:31.0371407667988,y: 30.0375391919358}
,
{x:31.0806453367069,y: 29.9823125531072}
,
{x:31.0813451338173,y: 29.9814158144403}
,
{x:31.0813459595495,y: 29.9813707517166}
,
{x:31.077946240032,y: 29.973602205908... | JavaScript |
GoogleElectionMap.shapeReady({name:"221_3719",type:"state",state:"221_3719",bounds:[],centroid:[],shapes:[
{points:[
{x:33.8448146753712,y: 27.2295163425025}
,
{x:33.8438136408343,y: 27.2271851941485}
,
{x:33.842782682565,y: 27.2248893242591}
,
{x:33.8420364413355,y: 27.2222906592628}
,
{x:33.8416860425613,y: 27.221070... | JavaScript |
GoogleElectionMap.shapeReady({name:"94_1309",type:"state",state:"94_1309",bounds:[],centroid:[],shapes:[
{points:[
{x:30.9590765932058,y: 31.4605822257159}
,
{x:30.9598050735722,y: 31.455446341119}
,
{x:30.9614394151826,y: 31.4547464649627}
,
{x:30.9626188750519,y: 31.45645885228}
,
{x:30.9634356078154,y: 31.4572372878... | JavaScript |
GoogleElectionMap.shapeReady({name:"19_191",type:"state",state:"19_191",bounds:[],centroid:[],shapes:[
{points:[
{x:31.2454835692554,y: 30.0760419275228}
,
{x:31.2454729215383,y: 30.0758914706171}
,
{x:31.2451136078991,y: 30.0758982359055}
,
{x:31.2451023485173,y: 30.0757824582742}
,
{x:31.2444238247242,y: 30.075784958... | JavaScript |
GoogleElectionMap.shapeReady({name:"35_05",type:"state",state:"35_05",bounds:[],centroid:[],shapes:[
{points:[
{x:34.4159533326826,y: 28.203456527133}
,
{x:34.4183305894436,y: 28.2011653115521}
,
{x:34.4222530452875,y: 28.2027054194006}
,
{x:34.4221676986887,y: 28.1983505394374}
,
{x:34.4264789327093,y: 28.193234056542... | JavaScript |
GoogleElectionMap.shapeReady({name:"86_3085",type:"state",state:"86_3085",bounds:[],centroid:[],shapes:[
{points:[
{x:31.5287969332143,y: 30.2547952960365}
,
{x:31.6498692121442,y: 30.1912183500685}
,
{x:31.6341165167755,y: 30.1880116198298}
,
{x:31.6295435263591,y: 30.1870803188824}
,
{x:31.6208820557499,y: 30.1853159... | JavaScript |
GoogleElectionMap.shapeReady({name:"78_3344",type:"state",state:"78_3344",bounds:[],centroid:[],shapes:[
{points:[
{x:31.791257822608,y: 30.2915215684539}
,
{x:31.769693382804,y: 30.2759139506997}
,
{x:31.7259984997538,y: 30.3163167769794}
,
{x:31.7311200454767,y: 30.3179151588061}
,
{x:31.7416299109867,y: 30.320698091... | JavaScript |
GoogleElectionMap.shapeReady({name:"27_04",type:"state",state:"27_04",bounds:[],centroid:[],shapes:[
{points:[
{x:32.5295449836112,y: 26.1128841369437}
,
{x:32.530770202232,y: 26.1124355753556}
,
{x:32.5326753261703,y: 26.1119278402945}
,
{x:32.5332296278273,y: 26.1118259138865}
,
{x:32.5338231204291,y: 26.111716778808... | JavaScript |
GoogleElectionMap.shapeReady({name:"26_15",type:"state",state:"26_15",bounds:[],centroid:[],shapes:[
{points:[
{x:31.5212258859429,y: 26.7842691458852}
,
{x:31.5212572829477,y: 26.783972313203}
,
{x:31.5215091354596,y: 26.7837025164617}
,
{x:31.5215228874379,y: 26.7836824777538}
,
{x:31.5214271556399,y: 26.783678673134... | JavaScript |
GoogleElectionMap.shapeReady({name:"25_13",type:"state",state:"25_13",bounds:[],centroid:[],shapes:[
{points:[
{x:31.2502816119964,y: 27.1695466640346}
,
{x:31.2510740788917,y: 27.1695001561317}
,
{x:31.2512684673483,y: 27.1697623885308}
,
{x:31.2519563376473,y: 27.1696519669639}
,
{x:31.2525532799969,y: 27.16950285476... | JavaScript |
GoogleElectionMap.shapeReady({name:"132_1724",type:"state",state:"132_1724",bounds:[],centroid:[],shapes:[
{points:[
{x:32.3084936394829,y: 30.5958956102082}
,
{x:32.3076618286441,y: 30.5943582384861}
,
{x:32.3070546083306,y: 30.592812040553}
,
{x:32.3068677737209,y: 30.5924377958904}
,
{x:32.3066343674322,y: 30.591970... | JavaScript |
GoogleElectionMap.shapeReady({name:"19_116",type:"state",state:"19_116",bounds:[],centroid:[],shapes:[
{points:[
{x:31.2401685310591,y: 30.0642738022371}
,
{x:31.2421344924476,y: 30.0635038088988}
,
{x:31.242421682463,y: 30.063405734147}
,
{x:31.2420455440337,y: 30.0634415052448}
,
{x:31.2416818163487,y: 30.06348517887... | JavaScript |
GoogleElectionMap.shapeReady({name:"108_1351",type:"state",state:"108_1351",bounds:[],centroid:[],shapes:[
{points:[
{x:31.168355867947,y: 30.9932060143194}
,
{x:31.1696994136541,y: 30.9929702212802}
,
{x:31.1723904389613,y: 30.9931864963331}
,
{x:31.1764277101909,y: 30.9936269766361}
,
{x:31.1775043143866,y: 30.993851... | JavaScript |
GoogleElectionMap.shapeReady({name:"25_08",type:"state",state:"25_08",bounds:[],centroid:[],shapes:[
{points:[
{x:31.3162999290813,y: 26.9788486667051}
,
{x:31.3175220751836,y: 26.9765271031115}
,
{x:31.3176319143172,y: 26.976553850606}
,
{x:31.3186459039881,y: 26.9770724391162}
,
{x:31.3189889756659,y: 26.975982114746... | JavaScript |
GoogleElectionMap.shapeReady({name:"61_787",type:"state",state:"61_787",bounds:[],centroid:[],shapes:[
{points:[
{x:32.0317514587535,y: 31.2056740284653}
,
{x:32.0336569964056,y: 31.2014548555179}
,
{x:32.0340175398588,y: 31.2005389954227}
,
{x:32.0342538836702,y: 31.2003318915683}
,
{x:32.0361446928437,y: 31.199242651... | JavaScript |
GoogleElectionMap.shapeReady({name:"205_2593",type:"state",state:"205_2593",bounds:[],centroid:[],shapes:[
{points:[
{x:32.3129712975398,y: 26.0608531146785}
,
{x:32.3127753147545,y: 26.0608521820039}
,
{x:32.3125209104043,y: 26.0617611561227}
,
{x:32.3123569030955,y: 26.0627012402181}
,
{x:32.3123572483793,y: 26.06270... | JavaScript |
GoogleElectionMap.shapeReady({name:"21_21",type:"state",state:"21_21",bounds:[],centroid:[],shapes:[
{points:[
{x:30.8951563628405,y: 29.8407581216427}
,
{x:30.8518036108626,y: 29.7907068493354}
,
{x:30.8517420077461,y: 29.8385636256441}
,
{x:30.7274988302041,y: 29.8386575128234}
,
{x:30.7284445698007,y: 29.84227654601... | JavaScript |
GoogleElectionMap.shapeReady({name:"94_1236",type:"state",state:"94_1236",bounds:[],centroid:[],shapes:[
{points:[
{x:30.6319740108512,y: 31.1365954927109}
,
{x:30.6316400958919,y: 31.1364196104664}
,
{x:30.6316395533749,y: 31.1364198376973}
,
{x:30.6311415619332,y: 31.1366286753059}
,
{x:30.6303522037961,y: 31.1371961... | JavaScript |
GoogleElectionMap.shapeReady({name:"26_18_mult",type:"state",state:"26_18_mult",bounds:[],centroid:[],shapes:[
{points:[
{x:31.8924306307318,y: 26.5056043391666}
,
{x:31.8921520119651,y: 26.4695104311447}
,
{x:31.8352314979693,y: 26.469854658115}
,
{x:31.8348541762499,y: 26.4698568642547}
,
{x:31.8319894111753,y: 26.46... | JavaScript |
GoogleElectionMap.shapeReady({name:"Gov_19_",type:"state",state:"Gov_19_",bounds:[],centroid:[],shapes:[
{points:[
{x:31.2952635093647,y: 29.8185202602321}
,
{x:31.2950110415762,y: 29.8184318222819}
,
{x:31.2948567736553,y: 29.8187332974771}
,
{x:31.2948457747336,y: 29.8187547921653}
,
{x:31.294846297884,y: 29.81876389... | JavaScript |
GoogleElectionMap.shapeReady({name:"31_03",type:"state",state:"31_03",bounds:[],centroid:[],shapes:[
{points:[
{x:33.9390669793434,y: 26.7117702879031}
,
{x:33.9406921246459,y: 26.693621780915}
,
{x:33.9377350160675,y: 26.6857009926738}
,
{x:33.9352929955775,y: 26.679733611878}
,
{x:33.935663189474,y: 26.6730705551111}... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.