Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
<%#
|
|
# Javascript Partial
|
|
|
|
This partial imports the necessary javascript on each page.
|
|
By default, it includes the application JS,
|
|
but each page can define additional JS sources
|
|
by providing a `content_for(:javascript)` block.
|
|
%>
|
|
|
|
<% Administrate::Engine.javascripts.each do |js_path| %>
|
|
<%= javascript_include_tag js_path %>
|
|
<% end %>
|
|
|
|
<%= yield :javascript %>
|
|
|
|
<% if Rails.env.test? %>
|
|
<%= javascript_tag do %>
|
|
$.fx.off = true;
|
|
$.ajaxSetup({ async: false });
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<script>
|
|
window.chatwootSettings = {
|
|
hideMessageBubble: true,
|
|
};
|
|
|
|
(function(d,t) {
|
|
var BASE_URL = '';
|
|
var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
|
g.src= BASE_URL + "/packs/js/sdk.js";
|
|
g.async = true;
|
|
s.parentNode.insertBefore(g,s);
|
|
g.onload=function(){
|
|
window.chatwootSDK.run({
|
|
websiteToken: '<%= ChatwootHub.support_config[:support_website_token] %>',
|
|
baseUrl: '<%= ChatwootHub.support_config[:support_script_url] %>'
|
|
})
|
|
}
|
|
})(document,"script");
|
|
|
|
window.addEventListener('chatwoot:ready', function() {
|
|
window.$chatwoot.setUser('<%= ChatwootHub.installation_identifier %>', {
|
|
identifier_hash: '<%= ChatwootHub.support_config[:support_identifier_hash] %>',
|
|
email: '<%= SuperAdmin.first.email %>',
|
|
name: '<%= SuperAdmin.first.name %>'
|
|
});
|
|
})
|
|
|
|
</script>
|