Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get Ember running with BPM based on these instructions:

https://github.com/bpm/bpm/wiki/Using-BPM-with-SproutCore-2.0

Everything seems to work fine until I try to add an expression to the Handlebars template:

Congratulations!  You are running HelloWorld v{{MyApp.VERSION}}

Then I get the following error:

TypeError: 'undefined' is not a function (evaluating 'a.charAt(0)')

If I remove the expression, everything works fine.

The source is here: https://github.com/nicholasjhenry/bpm_ember

Can anyone provide determine why this error is occurring?

Edit: The line that is throwing the error is:

function normalizePath(path) {
  ember_assert('must pass non-empty string to normalizePath()', path && path!=='');

  if (path==='*') return path; //special case...

  var first = path.charAt(0); // <======

which is called by Ember.watch.

share|improve this question

closed as too localized by casperOne Jan 3 '12 at 13:03

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 2 down vote accepted

EDIT (2012/01/03)

I have updated the packages on GetBPM.org so now they work out of the box. All you have to do is run bpm add ember in your project directory and everything will work fine. I also have updated using BPM with Ember.js instructions here: https://github.com/ud3323/bpm/wiki/Using-BPM-with-Ember.

share|improve this answer
The easier way is to clone ember from github and use it in the vendor directory. On vendoring packages see the bpm wiki entry github.com/bpm/bpm/wiki/Vendoring-Projects-and-Packages. That way it's easy to always use one of the newest ember builds. – Steffen Jan 3 '12 at 8:49

Not the answer you're looking for? Browse other questions tagged or ask your own question.