metamaps--metamaps/frontend/src/Metamaps/Debug.js

16 lines
307 B
JavaScript
Raw Normal View History

2016-09-22 06:25:49 +00:00
window.Metamaps = window.Metamaps || {}
/*
* Metamaps.Debug.js.erb
*
* Dependencies: none!
*/
2016-04-14 06:16:16 +00:00
Metamaps.Debug = function () {
console.debug(Metamaps)
2016-09-14 02:45:42 +00:00
console.debug('Metamaps Version: ' + Metamaps.VERSION)
}
2016-04-14 06:16:16 +00:00
Metamaps.debug = function () {
Metamaps.Debug()
2016-09-22 06:25:49 +00:00
window.Metamaps = window.Metamaps || {}
}