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