Sha256: e06c3e1757cfba135ad48504b755c28efcdef979b0ffe088eca1cee90eaa97f5

Contents?: true

Size: 736 Bytes

Versions: 173

Compression:

Stored size: 736 Bytes

Contents

////
/// @group tools/assets
////

/// Image URL
///
/// If a custom image-url handler is defined ($govuk-image-url-function) then
/// it will be called, otherwise a url will be returned with the filename
/// appended to the image path.
///
/// @param {String} Filename for the image to load
/// @return {String} URL for the filename, wrapped in `url()`
/// @access public

@function govuk-image-url($filename) {
  $use-custom-function: variable-exists("govuk-image-url-function")
    and $govuk-image-url-function
    and function-exists($govuk-image-url-function);

  @if ($use-custom-function) {
    @return call(get-function($govuk-image-url-function), $filename);
  } @else {
    @return url($govuk-images-path + $filename);
  }
}

Version data entries

173 entries across 170 versions & 4 rubygems

Version Path
govuk_publishing_components-23.8.0 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.7.7 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.7.6 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.7.5 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.7.4 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.7.3 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.7.2 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.7.1 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.7.0 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.6.0 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.5.1 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.5.0 node_modules/govuk-frontend/govuk/tools/_image-url.scss
govuk_publishing_components-23.4.0 node_modules/govuk-frontend/govuk/tools/_image-url.scss