Skip to content
Snippets Groups Projects
Unverified Commit 951ff089 authored by Robin Appelman's avatar Robin Appelman Committed by Lukas Reschke
Browse files

hint global handlebars

parent f0b9eba9
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,8 @@ ...@@ -12,6 +12,8 @@
* *
*/ */
/** @global Handlebars */
if (!OCA.External) { if (!OCA.External) {
OCA.External = {}; OCA.External = {};
} }
...@@ -502,7 +504,7 @@ OCA.External.StatusManager.Utils = { ...@@ -502,7 +504,7 @@ OCA.External.StatusManager.Utils = {
trFolder = $('#fileList tr[data-file=\"' + OCA.External.StatusManager.Utils.jqSelEscape(folder) + '\"]'); trFolder = $('#fileList tr[data-file=\"' + OCA.External.StatusManager.Utils.jqSelEscape(folder) + '\"]');
} }
trFolder.removeClass('externalErroredRow').removeClass('externalDisabledRow'); trFolder.removeClass('externalErroredRow').removeClass('externalDisabledRow');
tdChilds = trFolder.find("td:first-child div.thumbnail"); var tdChilds = trFolder.find("td:first-child div.thumbnail");
tdChilds.each(function () { tdChilds.each(function () {
var thisElement = $(this); var thisElement = $(this);
thisElement.css('background-image', thisElement.data('oldImage')); thisElement.css('background-image', thisElement.data('oldImage'));
...@@ -525,7 +527,7 @@ OCA.External.StatusManager.Utils = { ...@@ -525,7 +527,7 @@ OCA.External.StatusManager.Utils = {
}); });
} else { } else {
file = $("#fileList tr[data-file=\"" + this.jqSelEscape(filename) + "\"] > td:first-child div.thumbnail"); file = $("#fileList tr[data-file=\"" + this.jqSelEscape(filename) + "\"] > td:first-child div.thumbnail");
parentTr = file.parents('tr:first'); var parentTr = file.parents('tr:first');
route = OCA.External.StatusManager.Utils.getIconRoute(parentTr); route = OCA.External.StatusManager.Utils.getIconRoute(parentTr);
parentTr.attr("data-icon", route); parentTr.attr("data-icon", route);
file.css('background-image', "url(" + route + ")").css('display', 'none').css('display', 'inline'); file.css('background-image', "url(" + route + ")").css('display', 'none').css('display', 'inline');
......
...@@ -8,6 +8,8 @@ ...@@ -8,6 +8,8 @@
* *
*/ */
/* @global Handlebars */
(function() { (function() {
var TEMPLATE = var TEMPLATE =
'<div>' + '<div>' +
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment