Sha256: 37a645d4bde03437e003f78e5d14feb7ab13fa211d0c75e756820e5bac3b5384
Contents?: true
Size: 739 Bytes
Versions: 8
Compression:
Stored size: 739 Bytes
Contents
# frozen_string_literal: true module ZuoraConnectUi # General helpers for application level module ApplicationHelper def zuo_include_tag JAVASCRIPT_INCLUDE end JAVASCRIPT_INCLUDE = %w[ https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/js/bootstrap-datepicker.min.js https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/locales/bootstrap-datepicker.ja.min.js https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/locales/bootstrap-datepicker.it.min.js https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/locales/bootstrap-datepicker.zh-CN.min.js ].map { |link| '<script src="' + link + '"></script>' }.join("\n").html_safe end end
Version data entries
8 entries across 8 versions & 1 rubygems