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; } |
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
'use strict'; | |
/** | |
* @ngdoc service | |
* @name destinyApp.API | |
* @description | |
* # API | |
*/ | |
angular.module('destinyApp') | |
.factory('API', function ($http, $q, APIKEY, PLATFORMURL) { |