This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var map; // initialize map | |
window.initMap = function () { | |
var mapContainer = document.getElementById('map-canvas'); | |
if (!mapContainer) { | |
return; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#map-canvas { | |
height: 55vh; | |
} | |
#map-canvas { | |
} | |
.gm-style .gm-style-iw { | |
top: -35px !important; | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { PropTypes } from 'react'; | |
import FormInput from './FormInput'; | |
const TextInput = (props) => { | |
let {onChange, validate, errorText, name, ...properties} = props; | |
const handleChange = (e) => onChange(name, e.target.value); | |
const handleValidation = (e) => validate && validate({[name]: e.target.value}); | |
return ( | |
<FormInput errorText={props.errorText}> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Generated on 2014-11-29 using generator-angular 0.10.0 | |
'use strict'; | |
// # Globbing | |
// for performance reasons we're only matching one level down: | |
// 'test/spec/{,*/}*.js' | |
// use this if you want to recursively match all subfolders: | |
// 'test/spec/**/*.js' | |
module.exports = function (grunt) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -45,10 +46,17 @@ function pp_frontpage_most_content_type_render($subtype, $conf, $panel_args, $co | |
); | |
$table_header = array(t('user'), t('counter')); | |
foreach ($types as $title => $data_type) { | |
- $query_results = db_query($query, array( | |
- ':type' => $data_type, | |
- ':timestamp' => $last_thee_months, | |
- ))->fetchAllKeyed(); | |
+ $query = db_select('ppgetstat', 'ppst'); | |
+ $query->rightJoin('field_data_field_user_id', 'fuid', 'fuid.field_user_id_value = ppst.doid'); |