1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Handlebars/debug.js

12 lines
268 B
JavaScript
Raw Normal View History

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