mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Model driven indexer settings
This commit is contained in:
parent
e03ab2ebea
commit
9d5cb6f3e0
14 changed files with 576 additions and 17 deletions
|
@ -4,7 +4,7 @@ Marionette.TemplateCache.get = function (templateId) {
|
|||
|
||||
var templateKey = templateId.toLowerCase();
|
||||
|
||||
var templateFunction = window.Templates[templateKey.toLowerCase()];
|
||||
var templateFunction = window.Templates[templateKey];
|
||||
|
||||
if (!templateFunction) {
|
||||
throw 'couldn\'t find pre-compiled template ' + templateKey;
|
||||
|
|
20
UI/Mixins/handlebars.mixin.js
Normal file
20
UI/Mixins/handlebars.mixin.js
Normal file
|
@ -0,0 +1,20 @@
|
|||
'use strict';
|
||||
|
||||
Handlebars.registerHelper('partial', function(templateName, context){
|
||||
//TODO: We should be able to pass in the context, either an object or a property
|
||||
|
||||
var templateFunction = Marionette.TemplateCache.get(templateName);
|
||||
return new Handlebars.SafeString(templateFunction(this));
|
||||
});
|
||||
|
||||
Handlebars.registerHelper("debug", function(optionalValue) {
|
||||
console.log("Current Context");
|
||||
console.log("====================");
|
||||
console.log(this);
|
||||
|
||||
if (optionalValue) {
|
||||
console.log("Value");
|
||||
console.log("====================");
|
||||
console.log(optionalValue);
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue