1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-04 18:48:36 +00: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
});