mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-13 16:43:58 -07:00
fixed handlebars debug casing issue.
This commit is contained in:
parent
bbacad9171
commit
42c6ca4297
2 changed files with 1 additions and 1 deletions
11
UI/Handlebars/Handlebars.Debug.js
Normal file
11
UI/Handlebars/Handlebars.Debug.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
'use strict';
|
||||
define(
|
||||
[
|
||||
'handlebars'
|
||||
], function (Handlebars) {
|
||||
Handlebars.registerHelper("debug", function () {
|
||||
console.group('Handlebar context');
|
||||
console.log(this);
|
||||
console.groupEnd();
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue