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

16 lines
307 B
JavaScript
Raw Normal View History

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