List all available Handlebar Templates in the JavaScript console

ember.js

Solution

Try using `Ember.keys`:

Ember.keys(Ember.TEMPLATES);

Hope it helps.

Problem

How can I list all available handlebar templates with their names in the JavaScript console?

Original source