<reference name="breadcrumbs">
<action method="addCrumb">
<crumbName>Home</crumbName>
<crumbInfo>
<label>Home</label>
Home
| <?xml version="1.0"?> | |
| <!-- | |
| /** | |
| * Magento | |
| * | |
| * NOTICE OF LICENSE | |
| * | |
| * This source file is subject to the Academic Free License (AFL 3.0) | |
| * that is bundled with this package in the file LICENSE_AFL.txt. | |
| * It is also available through the world-wide-web at this URL: |
| [ | |
| // SidebarEnhancements package enhancements | |
| { "keys": ["super+ctrl+r"], "command": "reveal_in_side_bar"} | |
| , { "keys": ["super+shift+r"], "command": "side_bar_rename" } | |
| ] |
| var gulp = require('gulp'); | |
| var less = require('gulp-less'); | |
| var minifycss = require('gulp-minify-css'); | |
| var jshint = require('gulp-jshint'); | |
| var concat = require('gulp-concat'); | |
| var uglify = require('gulp-uglify'); | |
| var replace = require('gulp-replace'); |
Let me start with the solution: ReactJS includes the styles inline and/or in the same file as the elements they're being used on. This removes my frustrations with multiple people working on the same SASS/LESS project.
So this is only for projects that don't follow the methodology above.
| Site = -> | |
| # @see: http://stackoverflow.com/a/20413768/622287 | |
| _isHighDensity: -> | |
| ((window.matchMedia && (window.matchMedia('only screen and (min-resolution: 124dpi), only screen and (min-resolution: 1.3dppx), only screen and (min-resolution: 48.8dpcm)').matches || window.matchMedia('only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 2.6/2), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (min-device-pixel-ratio: 1.3)').matches)) || (window.devicePixelRatio && window.devicePixelRatio > 1.3)) | |
| _isRetina: -> | |
| ((window.matchMedia && (window.matchMedia('only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-resolution: 75.6dpcm)').matches || window.matchMedia('only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2)').matches)) || (window.devicePixel |
| /** | |
| * Takes a nested array and flattens it. Default use is for a nested array of integers | |
| * But can be used for nested arrays with any type of value by passing in custom mapping and/or filtering functions | |
| * @param {Array} arr The nested array to be flattened | |
| * @param {Function} mapIt Function to map each value | |
| * @param {Function} filterIt Function to filter out unwanted values left over from the mapping | |
| * @return {Array} Returns empty array if `arr` is invalid | |
| */ | |
| export default function flatten(arr, mapIt=Number, filterIt=Number.isInteger) { | |
| let result = [] |
| Verifying that "16tuy8poTZy5eDcbjseWWkm63AP2QhJeTN.id" is my Blockstack ID. https://onename.com/16tuy8poTZy5eDcbjseWWkm63AP2QhJeTN |
| $gr: 1.61803398875; | |
| $spacer: 1.25rem !default; | |
| $spacers: ( | |
| 0: 0, | |
| 1: $spacer / $gr / $gr / $gr, | |
| 2: $spacer / $gr / $gr, | |
| 3: $spacer / $gr, | |
| 4: $spacer, |
| <?php | |
| namespace App\Providers; | |
| use App\Auth\UserProvider; | |
| use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; | |
| class AuthServiceProvider extends ServiceProvider | |
| { | |
| /** |