Skip to content

Commit

Permalink
Escape tiles view in datagrid (#786)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz authored Jul 2, 2021
1 parent 987203e commit f0436b9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
32 changes: 16 additions & 16 deletions dist/husky.js
Original file line number Diff line number Diff line change
Expand Up @@ -12130,7 +12130,7 @@ if ( typeof module === "object" && module && typeof module.exports === "object"
return result.value;
};

// Shuffle an array, using the modern version of the
// Shuffle an array, using the modern version of the
// [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle).
_.shuffle = function(obj) {
var rand;
Expand Down Expand Up @@ -18354,7 +18354,7 @@ define('type/decimal',[
if (this.options.nullable === true) {
return null;
}

return '';
}
return Globalize.parseFloat(val);
Expand Down Expand Up @@ -22681,15 +22681,15 @@ var objectHelper = (function () {
function isString (value) {
return Object.prototype.toString.apply(value) === '[object String]';
}

function isNumber (value) {
return Object.prototype.toString.apply(value) === '[object Number]';
}

function isBoolean (value) {
return Object.prototype.toString.apply(value) === '[object Boolean]';
}

function join (arr, separator) {
var
result = '',
Expand Down Expand Up @@ -25422,9 +25422,9 @@ define("typeahead", function(){});

/*
This is a list of all available events you can register on a dropzone object.

You can register an event handler like this:

dropzone.on("dragEnter", function() { });
*/

Expand Down Expand Up @@ -26933,7 +26933,7 @@ define("typeahead", function(){});


/*

Bugfix for iOS 6 and 7
Source: http://stackoverflow.com/questions/11929099/html5-canvas-drawimage-ratio-bug-ios
based on the work of https://github.com/stomita/ios-imagefile-megapixel
Expand Down Expand Up @@ -27125,7 +27125,7 @@ define("dropzone", ["jquery"], (function (global) {
if ( -1 === suggestion ) {
//console.log("tag:" + tag + " not in tagList, not adding it");
return;
}
}
}

}
Expand Down Expand Up @@ -29307,7 +29307,7 @@ define('bower_components/aura/lib/aura',[
* @return {void}
*/
app.cleanUp = function () {
_.defer(function() {
_.defer(function() {
_.each(appSandboxes, function(sandbox) {
if (!!sandbox && !!sandbox.el && !app.core.dom.contains($(sandbox.el)[0], document)) {
sandbox.stop();
Expand Down Expand Up @@ -29348,7 +29348,7 @@ define('bower_components/aura/lib/aura',[
// Stop sandbox directly if the selector is a ref and which _ref can be
// found
var sandbox = app.sandboxes.get(selector);

if (sandbox) {
stopSandbox(sandbox);
}
Expand Down Expand Up @@ -29379,7 +29379,7 @@ define('bower_components/aura/lib/aura',[
_.invoke(sandbox._children, 'stop');
app.core.mediator.emit(event, sandbox);
if (sandbox._component) {
// remove is deprecated
// remove is deprecated
sandbox._component.invokeWithCallbacks('remove');
sandbox._component.invokeWithCallbacks('destroy');
}
Expand Down Expand Up @@ -32633,14 +32633,14 @@ define('husky_components/datagrid/decorators/tiles-view',[],function() {
tile: [
'<div class="tile">',
' <span class="<%= icon %> icon"></span>',
' <span title="<%= title %>" class="title"><%= title %></span>',
' <span class="description"><%= description %></span>',
' <span title="<%- title %>" class="title"><%- title %></span>',
' <span class="description"><%- description %></span>',
'</div>'
].join(''),
addNewTile: [
'<div class="add-new-tile">',
' <span class="<%= icon %> icon"></span>',
' <span class="title"><%= title %></span>',
' <span class="title"><%- title %></span>',
'</div>'
].join('')
},
Expand Down Expand Up @@ -48201,7 +48201,7 @@ define('__component__$url-input@husky',['services/husky/url-validator'], functio

/**
* Get a cache reference
* @method get
* @method get
* @param {[Number} cacheId
*/
get: function(cacheId) {
Expand Down
2 changes: 1 addition & 1 deletion dist/husky.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions husky_components/datagrid/decorators/tiles-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ define(function() {
tile: [
'<div class="tile">',
' <span class="<%= icon %> icon"></span>',
' <span title="<%= title %>" class="title"><%= title %></span>',
' <span class="description"><%= description %></span>',
' <span title="<%- title %>" class="title"><%- title %></span>',
' <span class="description"><%- description %></span>',
'</div>'
].join(''),
addNewTile: [
'<div class="add-new-tile">',
' <span class="<%= icon %> icon"></span>',
' <span class="title"><%= title %></span>',
' <span class="title"><%- title %></span>',
'</div>'
].join('')
},
Expand Down

0 comments on commit f0436b9

Please sign in to comment.