1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/UI/Handlebars/Handlebars.Debug.js

12 lines
268 B
JavaScript
Raw Normal View History

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