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
class App extends App | |
constructor: -> | |
return [ | |
'app.auth' | |
'app.account' | |
'app.dashboard' | |
] | |
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
/* | |
A gulp setup to use with AngularJS/Jade projects | |
TODO: Add "newer" support to the tasks | |
*/ | |
var gulp = require('gulp'); | |
var plumber = require('gulp-plumber'); | |
var coffee = require('gulp-coffee'); | |
var templateCache = require('gulp-angular-templatecache'); |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>AngularJS Validation</title> | |
<!-- Angular 1.4.9 CDN --> | |
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular.js"></script> | |
<style> |
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
<!-- This snippet is originally presented by Ben Frain @benfrain --> | |
<!DOCTYPE html> | |
<html class="no-js"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Independent CSS scrolling panels (with inertia)</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> |
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
<!DOCTYPE html> | |
<html ng-app="sasApp"> | |
<head> | |
<title>AngularJS Test</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css"> | |
NewerOlder