mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
fixed handlebars debug casing issue.
This commit is contained in:
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();
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user