Skip to content

Commit

Permalink
Merge pull request emberjs#3 from plusgut/master
Browse files Browse the repository at this point in the history
Made Renamings from Amber.js to Ember.js
  • Loading branch information
wycats committed Dec 16, 2011
2 parents f1f1a4b + ddb9938 commit ca6dff8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/examples/contacts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ App.contactsController = SC.ArrayController.create({
success: function(data) {
var contacts = data.contacts;

// Turn JSON objects into bindable Amber
// Turn JSON objects into bindable Ember
// objects.
contacts = contacts.map(function(item) {
return self.createContactFromJSON(item);
Expand Down
2 changes: 1 addition & 1 deletion assets/tutorial/steps/13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ body: >
<p>For this we can use the <code>bindAttr</code> helper which will automatically update an elements attributes based
on the value of a binding. Here, we bind the class attribute. If <code>isDone</code> is true then the class will be
added. Amber automatically dasherizes class names for us.</p>
added. Ember automatically dasherizes class names for us.</p>
codeTarget: 'template'

Expand Down
4 changes: 2 additions & 2 deletions assets/tutorial/tutorial.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ Tutorial.AceEditorView = SC.AceEditorView.extend({
/*
Tutorial.loadSteps = function() {
Tutorial.tutorialController.addStep({
body: "<strong>Welcome.</strong> To get a feel for Amber, follow along this quick tutorial."
body: "<strong>Welcome.</strong> To get a feel for Ember, follow along this quick tutorial."
});
Tutorial.tutorialController.addStep({
Expand Down Expand Up @@ -576,7 +576,7 @@ Tutorial.loadSteps = function() {
});
Tutorial.tutorialController.addStep({
body: "<strong>Congratulations!</strong> You've just created your first Amber application!"
body: "<strong>Congratulations!</strong> You've just created your first Ember application!"
});
};
*/
2 changes: 1 addition & 1 deletion team.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<h1>The Team</h1>
<p>This is the team of the awesome people working on Amber.js.</p>
<p>This is the team of the awesome people working on Ember.js.</p>
</div>

<!-- Example row of columns -->
Expand Down

0 comments on commit ca6dff8

Please sign in to comment.