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": "social-shop", | |
"version": "0.0.0", | |
"private": true, | |
"directories": { | |
"doc": "doc", | |
"test": "test" | |
}, | |
"scripts": { | |
"start": "ember server", |
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
/* global require, module */ | |
var EmberApp = require('ember-cli/lib/broccoli/ember-app'); | |
var app = new EmberApp({ | |
name: require('./package.json').name, | |
// for some large projects, you may want to uncomment this (for now) | |
es3Safe: false, |
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": "social-shop", | |
"dependencies": { | |
"handlebars": "~1.3.0", | |
"jquery": "^1.11.1", | |
"qunit": "~1.12.0", | |
"ember-qunit": "~0.1.5", | |
"ember": "1.5.1", | |
"ember-data": "1.0.0-beta.8", | |
"ember-resolver": "~0.1.1", |
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
// https://gist.github.com/854622 | |
(function(window,undefined){ | |
// Prepare our Variables | |
var | |
History = window.History, | |
$ = window.jQuery, | |
document = window.document; | |
// Check to see if History.js is enabled for our Browser |
NewerOlder