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'; | |
/** | |
* @ngdoc service | |
* @name destinyApp.API | |
* @description | |
* # API | |
*/ | |
angular.module('destinyApp') | |
.factory('API', function ($http, $q, APIKEY, PLATFORMURL) { |
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
module.exports = function(grunt, options){ | |
var yeoman = options.yeoman; | |
return { | |
options: { | |
dirs: [yeoman.dist], | |
blockReplacements: { | |
css: function(block) { | |
/** | |
* Find the first of the raw blocks that matches as a link, then extract the string to the left | |
* and the right of the href and put the new dest path in the middle of them, the keeping any |
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> | |
<html> | |
<head> | |
<title>White Plum Kitchen Sink - Bootstrap 3 Theme</title> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="../dist/css/bootstrap.css"> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
<script type="text/javascript" src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> |
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
/* | |
Function: getUrlParameters | |
Description: Get the value of URL parameters either from current URL or static URL | |
Author: Tirumal | |
URL: www.code-tricks.com | |
*/ | |
getUrlParameters: function (parameter, staticURL, decode) { | |
var currLocation = (staticURL.length) ? staticURL : window.location.search, | |
parArr = currLocation.split('?')[1].split('&'), |
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
@mixin bootstrap_mq($point) { | |
@if $point == xs { | |
@media (min-width: $screen-xs-min) { @content } | |
} | |
@if $point == sm { | |
@media (min-width: $screen-sm-min) { @content } | |
} |
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-08-10 using generator-jekyllrb 1.2.1 | |
'use strict'; | |
// Directory reference: | |
// css: css | |
// compass: sass | |
// javascript: js | |
// images: img | |
// fonts: fonts |
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
@mixin bp($point) { | |
@if $point == print { | |
@media only print { @content; } | |
} | |
} | |
@mixin em_width($px) { width: #{$px / 16}em; } | |
@mixin em_maxwidth($px) { max-width: #{$px / 16}em; } |