1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 02:22:31 +01:00
Radarr/UI/Handlebars/Handlebars.Debug.js

12 lines
268 B
JavaScript
Raw Normal View History

2013-06-25 06:43:16 +02:00
'use strict';
2013-06-30 21:57:26 +02:00
define(
[
'handlebars'
], function (Handlebars) {
Handlebars.registerHelper("debug", function () {
2013-06-25 06:43:16 +02:00
console.group('Handlebar context');
console.log(this);
console.groupEnd();
});
2013-06-30 21:57:26 +02:00
});