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"; | |
// Function definition | |
var filterByIteratee = function filterByIteratee(array, iteratee) { | |
// Empty object to store attributes as we encounter them | |
var previousAttributeNames = {}; | |
return array.filter(function (item) { | |
// Get the right value |
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 "compass/utilities/sprites/base"; | |
@mixin sprites($map, $sprite-names, $base-class: false, $dimensions: false, $prefix: sprite-map-name($map), $offset-x: 0, $offset-y: 0) { | |
@each $sprite-name in $sprite-names { | |
@if sprite_does_not_have_parent($map, $sprite-name) { | |
$full-sprite-name: "#{$prefix}#{$sprite-name}"; | |
.#{$full-sprite-name} { | |
@if $base-class { @extend #{$base-class}; } | |
@include sprite($map, $sprite-name, $dimensions, $offset-x, $offset-y); | |
} |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>page</title> | |
<link href="css/screen.css" type="text/css" rel="stylesheet" /> | |
<script src="js/jquery.js"></script> | |
<script src="js/bootstrap.js"></script> | |
<script src="js/myjs.js"></script> |