This file contains 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
/* | |
|-------------------------------------------------------------------------- | |
| Seo4Ajax Filter | |
|-------------------------------------------------------------------------- | |
| | |
| The following filter is used to load html from SEO4AJAX.com and | |
| serve it specifically to search engine / social networking bots. | |
| EXAMPLE - Route::get('/', array('before' => 'seo4ajax', 'uses' => 'controller@index')); | |
| | |
*/ |
This file contains 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
///////////////////////////////////// | |
// REQUIRES | |
var bower = require('gulp-bower'), | |
browserSync = require('browser-sync').create(), | |
concat = require('gulp-concat'), | |
es = require('event-stream'), | |
fs = require('fs'), | |
gulp = require('gulp'), | |
intercept = require('gulp-intercept'), | |
jSass = require('gulp-json-sass'), |
This file contains 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
{ | |
"name": "madnessplatform", | |
"version": "1.0.0", | |
"description": "MadnessPlatform: The application stack used to develop at Madness Labs", | |
"scripts": { | |
"postinstall": "gulp install" | |
}, | |
"devDependencies": { | |
"browser-sync": "^2.8.1", | |
"event-stream": "^3.3.1", |
This file contains 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
{ | |
"name": "MadnessBower", | |
"private": "true", | |
"devDependencies": { | |
"ionic": "driftyco/ionic-bower#master", | |
"font-awesome": "~4.2.0", | |
"animate.css": "~3.2.0", | |
"geoffgraham.animate.scss": "*", | |
"ionicons": "~2.0.1", | |
"ngCordova": "~0.1.12-alpha", |
This file contains 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
<style> | |
span p{ | |
cursor:pointer; | |
} | |
span ul{ | |
transition: all 0.5s ease; | |
list-style:none; | |
height:0px; | |
padding:0; | |
overflow:hidden; |
This file contains 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
<!----> | |
<!-- ANDROID --> | |
<!----> | |
<!-- Hide Chrome Navigation Bar Android (When Added to Home Screen) --> | |
<meta name="mobile-web-app-capable" content="yes"> | |
<!-- Change Chrome Navigation Bar Color (Android 5.1) --> | |
<meta name="theme-color" content="#db5945"> |
This file contains 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
app.factory('damage', function() { | |
var damage = {}; | |
damage.areas = [ | |
{ | |
"code":"1", | |
"description":"Antenna / Antenna Base" | |
}, | |
{ | |
"code":"2", |
This file contains 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
app.config(function($stateProvider, $urlRouterProvider) { | |
$stateProvider | |
.state('login', { | |
url: '/login', | |
templateUrl: 'html/login.html', | |
controller: 'Login' | |
}) | |
.state('tab', { | |
url: "/tab", | |
abstract: true, |
This file contains 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
/// <reference path="../../tsd/angularjs/angular.d.ts"/> | |
module AppName { | |
class RestService { | |
constructor(protected $http: any, protected $q: any, protected $httpParamSerializer) { | |
// On Load | |
} | |
get(rUrl, rParams) { |
This file contains 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
{ | |
"name": "MadnessPlatform", | |
"dir": "www/", | |
"db": { | |
"firebase": { | |
"host": "YOUR FIREBASE HERE" | |
} | |
}, | |
"html": { | |
"dir": "html/", |
OlderNewer