sense-media-box
Version:
Include web pages, videos, images and much more into your Qlik Sense app.
24 lines (21 loc) • 498 B
JavaScript
/*global define*/
define( [
'jquery',
'underscore',
'qvangular'
], function ( $, _, qvangular ) {
'use strict';
qvangular.directive( 'qsMbImage', function () {
return {
restrict: "E",
scope: {
img: '=',
verticalAlign: '=',
horizontalAlign: '=',
imageAspectRatio: '='
},
template: '<div class="qs-mb-image-container"><img src="{{img}}" title="{{img}}" class="{{verticalAlign}} {{horizontalAlign}} {{imageAspectRatio}}" /></div>'
}
} );
}
);