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
/// <reference path="../tsd/angularjs/angular.d.ts"/> | |
module AppName { | |
class TelFilter { | |
constructor(tel) { | |
if (!tel) { return ''; } | |
var value = tel.toString().trim().replace(/^\+/, ''); | |
if (value.match(/[^0-9]/)) { |
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
Show hidden characters
[ | |
{ "keys": ["ctrl+shift+b"], "command": "exec", "args": {"kill": true} }, | |
{ "keys" : ["ctrl+shift+alt+b"], "command" : "show_panel" , "args" : {"panel": "output.exec"} } | |
] |
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
{ | |
"folders": | |
[ | |
{ | |
"follow_symlinks": true, | |
"path": ".", | |
"folder_exclude_patterns": [ | |
"node_modules", | |
".git", | |
"engine", |
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
{ | |
"name": "MadnessPlatform", | |
"dir": "www/", | |
"db": { | |
"firebase": { | |
"host": "YOUR FIREBASE HERE" | |
} | |
}, | |
"html": { | |
"dir": "html/", |
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
/// <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 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
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 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
app.factory('damage', function() { | |
var damage = {}; | |
damage.areas = [ | |
{ | |
"code":"1", | |
"description":"Antenna / Antenna Base" | |
}, | |
{ | |
"code":"2", |
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
<!----> | |
<!-- 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 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
<style> | |
span p{ | |
cursor:pointer; | |
} | |
span ul{ | |
transition: all 0.5s ease; | |
list-style:none; | |
height:0px; | |
padding:0; | |
overflow:hidden; |
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
{ | |
"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", |