From ff43801a8e7d4cc1c014e5b23641cf362126576c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Sat, 21 Feb 2015 13:37:16 -0400 Subject: [PATCH] Default config examples to Ember CLI style config --- addon/configuration.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/addon/configuration.js b/addon/configuration.js index 3b62fb4..6ba4c2c 100644 --- a/addon/configuration.js +++ b/addon/configuration.js @@ -13,12 +13,11 @@ var defaults = { /** Ember Simple Auth Token's configuration object. - To change any of these values, define a global environment object for Ember - Simple Auth and define the values there: + To change any of these values, set them on the application's + environment object: ```js - window.ENV = window.ENV || {}; - window.ENV['simple-auth-token'] = { + ENV['simple-auth-token'] = { serverTokenEndpoint: '/some/other/endpoint' } ```