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
| t. .X | |
| : : | |
| |.. .| | |
| ;|... ..|/ | |
| BXii||:.. .:||i8@ | |
| @Iiiiii;||:.. ..:||/iiiiii% | |
| XIiiiiiiit;||:.. ..:||/iiiiiiiiIt | |
| IIiiiiiiiiiiSt|:.. ..:|SSIiiiiiiiiiIt8 | |
| ttIiiiiiiiiiiItiiiiiiiiiiitiiiiiiiiiiitttt | |
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 <%= (new Date).toISOString().split('T')[0] %> using <%= pkg.name %> <%= pkg.version %> | |
| 'use strict'; | |
| var moment = require('moment'); | |
| var LIVERELOAD_PORT = 35729; | |
| var lrSnippet = require('connect-livereload')({port: LIVERELOAD_PORT}); | |
| var mountFolder = function (connect, dir) { | |
| return connect.static(require('path').resolve(dir)); | |
| }; |
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 <%= (new Date).toISOString().split('T')[0] %> using <%= pkg.name %> <%= pkg.version %> | |
| 'use strict'; | |
| var LIVERELOAD_PORT = 35729; | |
| var lrSnippet = require('connect-livereload')({port: LIVERELOAD_PORT}); | |
| var mountFolder = function (connect, dir) { | |
| return connect.static(require('path').resolve(dir)); | |
| }; | |
| module.exports = function (grunt) { | |
| // load all grunt tasks |
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
| // Create a module for the application. | |
| var app = things('taptap'); | |
| // A "Service" is a once-instantiated, injectable dependency your app may need. | |
| // "User" is a service that will handle the functionality of logging in and out | |
| // a user. Note that it lists "Store" in the signature of the function. This | |
| // will be caught by "thing.js" and injected into the function when it is | |
| // called. | |
| app.service('User', function(Store) { |
NewerOlder