From 9385b666e39b71897020ca3747b72b3d96ed8997 Mon Sep 17 00:00:00 2001 From: Michael Q Larson Date: Wed, 21 Jan 2015 14:29:16 -0800 Subject: [PATCH] specify that we're using English in the layout file and state the npm and node version in package.json' --- package.json | 4 ++++ views/layout.jade | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ccea3f6e78..5430fe4e18 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,10 @@ "type": "git", "url": "https://github.com/freecodecamp/freecodecamp.git" }, + "engines": { + "node": "0.10.29", + "npm": "1.4.16" + }, "scripts": { "start": "node app.js", "test": "mocha" diff --git a/views/layout.jade b/views/layout.jade index 9aa2902705..de6f552728 100644 --- a/views/layout.jade +++ b/views/layout.jade @@ -1,5 +1,5 @@ doctype html -html(ng-app='profileValidation') +html(ng-app='profileValidation', lang='en') head script(src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js") script(src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js")