spinlock
spinlock

Reputation: 3957

how can I figure out what version of ember a site is running?

If I navigate to a site that is using Ember, is there anyway for me to get the version information? I have access to the console and dev tools but this is for a production build without sourcemaps, etc...

Thanks!

Upvotes: 2

Views: 776

Answers (3)

andorov
andorov

Reputation: 4336

Ember should be available in the console.

enter image description here

In addition, if you have Chrome's Ember Inspector plugin installed, it has an option to show the Ember logo in the URL bar when a site is running Ember.

enter image description here

Upvotes: 1

kristjan reinhold
kristjan reinhold

Reputation: 2048

You can find your versioning under console's tab "Debug"

enter image description here

Upvotes: 3

mic4ael
mic4ael

Reputation: 8320

I might be wrong, because I got no experience in Ember, but if you have access to the console, isn't it enough to make use of Ember.VERSION?

Upvotes: 3

Related Questions