Colors of social brands is [here][2]
Facebook Share
http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwebsite.com&t=url%20encoded%20text
Facebook Like Button
http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwebsite.com
| import * as React from "react"; | |
| interface IOwnProps { | |
| someDispatchProps: () => void, | |
| someMapStateToProps: "string", | |
| someProps: "string", | |
| } | |
| export const ChildComponent: React.StatelessComponent<IOwnProps> = ({someDispatchProps, someMapStateToProps, someProps}) => { | |
| return ( |
| import { buildAction } from 'typesafe-actions'; | |
| export const authActions = { | |
| getLoggedUser: buildAction('GET_LOGGED_USER').empty(), | |
| fetchAuth: buildAction('AUTH').async< | |
| { | |
| pending: boolean | |
| email: string, | |
| password: string | |
| }, |
| import simpleheat from 'simpleheat'; | |
| /* | |
| (c) 2014, Vladimir Agafonkin | |
| Leaflet.heat, a tiny and fast heatmap plugin for Leaflet. | |
| https://github.com/Leaflet/Leaflet.heat | |
| */ | |
| L.HeatLayer = (L.Layer ? L.Layer : L.Class).extend({ | |
| // options: { |
| //* Format specific sections in a Gravity Form - code based on | |
| // http://www.jordancrown.com/multi-column-gravity-forms/ and https://sridharkatakam.com/splitting-gravity-forms-fields-into-2-columns/ | |
| function gform_format_sections( $content, $field, $value, $lead_id, $form_id ) { | |
| if( !IS_ADMIN ) { // only perform on the front end | |
| // target section breaks | |
| if( $field['type'] == 'section' ) { | |
| $form = RGFormsModel::get_form_meta( $form_id, true ); | |
| // check for the presence of formatted section class |
| .entry .gform_wrapper { | |
| max-width: 100%; | |
| margin-bottom: 28px; | |
| } | |
| .gform_wrapper ul li.gfield { | |
| margin-bottom: 20px; | |
| } | |
| .entry .gform_wrapper input[type=text], |
| .gform_wrapper { | |
| // Steps | |
| .gf_page_steps{ | |
| .gf_step{ | |
| } | |
| .gf_step_active{ |
| /*! | |
| * Grunt | |
| * $ npm install grunt-contrib-uglify grunt-autoprefixer grunt-contrib-cssmin grunt-contrib-imagemin grunt-contrib-sass grunt-contrib-watch grunt-contrib-concat grunt-contrib-clean grunt-contrib-jshint grunt-notify --save-dev | |
| */ | |
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| // Sass |