Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
bump version to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
James A. Rosen committed Jan 9, 2013
1 parent aacdfa9 commit 1725852
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.1
1.3.2
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-i18n",
"version": "1.3.1",
"version": "1.3.2",
"description": "I18n support for Ember.js",
"main": [ "dist/ember-i18n-latest.js" ],
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion dist/ember-i18n-1.3.1.js → dist/ember-i18n-1.3.2.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
result = I18n.translations[key] = I18n.compile("Missing translation: " + key);
}
}
if ((result != null) && !$.isFunction(result)) {
if ((result != null) && !jQuery.isFunction(result)) {
result = I18n.translations[key] = I18n.compile(result);
}
return result;
Expand Down
2 changes: 1 addition & 1 deletion dist/ember-i18n-latest.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
result = I18n.translations[key] = I18n.compile("Missing translation: " + key);
}
}
if ((result != null) && !$.isFunction(result)) {
if ((result != null) && !jQuery.isFunction(result)) {
result = I18n.translations[key] = I18n.compile(result);
}
return result;
Expand Down

0 comments on commit 1725852

Please sign in to comment.