wco_email 0.1.1.54 → 0.1.1.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/views/wco_email/conversations/show.haml +2 -1
- data/config/initializers/08_integrations.rb +3 -0
- metadata +2 -14
- data/app/assets/config-trash/wco_email_manifest.js +0 -6
- data/app/assets/javascript/vendor-trash/jquery-ui.min.js +0 -13
- data/app/assets/javascript/vendor-trash/jquery.fileupload.js +0 -1482
- data/app/assets/javascript/vendor-trash/jquery.iframe-transport.js +0 -224
- data/app/assets/javascript/vendor-trash/jquery.ui.widget.js +0 -572
- data/app/assets/javascript/vendor-trash/summernote-bs4.min.js +0 -3
- data/app/assets/javascript/wco_email/file_upload.js-trash +0 -32
- data/app/views/wco_email/email_actions/_form_mini.haml-trash +0 -28
- data/app/views/wco_email/email_templates/_plain.haml-trash +0 -17
- data/app/views/wco_email/messages/_form_reply.haml-trash +0 -17
- data/lib/tasks/trash/email_tasks.rake-trash +0 -126
- data/lib/tasks/trash/scrape_reddit_tasks.rake-bk +0 -23
- data/lib/tasks/trash/sitemap_tasks.rake-trash +0 -146
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8de915ac821b3008a5eb3e64369c3aca53b92e3c9c35033b62b39ce7003db17c
|
|
4
|
+
data.tar.gz: bf8d61b396d4393ef46183a498186969fd492b5ecb2506222cbb55a20373ec1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: adb423d238a850f679112cf1b041a2cd312d5e0b31d408f87f213c6fa6e2df721d9e3b9d0ddd487fc3a97766d548a2509eb32140257c373250f89a86ad2e17a7
|
|
7
|
+
data.tar.gz: 8d2826467735d3ca5c5249720ceb2144664fb14e4ad7f0e5d7879e2dd57aade3bdeb959a95151ff71f2bb95cb20e34807248770bafc92cfc965df6c0690e3e84
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
= render '/wco_email/messages/meta', message: msg
|
|
30
30
|
= link_to '[expand]', message_iframe_path(msg, expand_history: true), target: "iframe_#{msg.id}"
|
|
31
31
|
= link_to '[collapse]', message_iframe_path(msg), target: "iframe_#{msg.id}"
|
|
32
|
-
%
|
|
32
|
+
%span.collapse-expand{ id: "iframe_#{msg.id}" } [<>]
|
|
33
|
+
%iframe.message-iframe{ src: message_iframe_path(msg), name: "iframe_#{msg.id}", onload: "resizeIframe(this)" }
|
|
33
34
|
|
|
34
35
|
- msg = @conversation.messages.last
|
|
35
36
|
= render '/wco_email/contexts/form_reply', lead_id: msg.lead_id, message: msg, ctx: WcoEmail::Context.new({ from_email: msg.to&.downcase, subject: msg.subject, email_template_id: ET.find_by( slug: 'blank').id })
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wco_email
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.1.
|
|
4
|
+
version: 0.1.1.55
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Victor Pudeyev
|
|
@@ -299,16 +299,9 @@ extra_rdoc_files: []
|
|
|
299
299
|
files:
|
|
300
300
|
- README.txt
|
|
301
301
|
- Rakefile
|
|
302
|
-
- app/assets/config-trash/wco_email_manifest.js
|
|
303
|
-
- app/assets/javascript/vendor-trash/jquery-ui.min.js
|
|
304
|
-
- app/assets/javascript/vendor-trash/jquery.fileupload.js
|
|
305
|
-
- app/assets/javascript/vendor-trash/jquery.iframe-transport.js
|
|
306
|
-
- app/assets/javascript/vendor-trash/jquery.ui.widget.js
|
|
307
|
-
- app/assets/javascript/vendor-trash/summernote-bs4.min.js
|
|
308
302
|
- app/assets/javascript/wco_email/application.js
|
|
309
303
|
- app/assets/javascript/wco_email/contexts.js
|
|
310
304
|
- app/assets/javascript/wco_email/conversations.js
|
|
311
|
-
- app/assets/javascript/wco_email/file_upload.js-trash
|
|
312
305
|
- app/assets/javascript/wco_email/shared.js
|
|
313
306
|
- app/assets/stylesheets/wco_email/application.scss
|
|
314
307
|
- app/assets/stylesheets/wco_email/contexts.scss
|
|
@@ -396,7 +389,6 @@ files:
|
|
|
396
389
|
- app/views/wco_email/email_action_templates/new.haml
|
|
397
390
|
- app/views/wco_email/email_action_templates/show.haml
|
|
398
391
|
- app/views/wco_email/email_actions/_form.haml
|
|
399
|
-
- app/views/wco_email/email_actions/_form_mini.haml-trash
|
|
400
392
|
- app/views/wco_email/email_actions/_header.haml
|
|
401
393
|
- app/views/wco_email/email_actions/edit.haml
|
|
402
394
|
- app/views/wco_email/email_actions/index.haml
|
|
@@ -423,7 +415,6 @@ files:
|
|
|
423
415
|
- app/views/wco_email/email_templates/_index_expanded.haml
|
|
424
416
|
- app/views/wco_email/email_templates/_meta.haml
|
|
425
417
|
- app/views/wco_email/email_templates/_piousbox_social.html.erb
|
|
426
|
-
- app/views/wco_email/email_templates/_plain.haml-trash
|
|
427
418
|
- app/views/wco_email/email_templates/_show_cell.haml
|
|
428
419
|
- app/views/wco_email/email_templates/_tracking_footer.html.erb
|
|
429
420
|
- app/views/wco_email/email_templates/_wasyaco_social.html.erb
|
|
@@ -434,11 +425,11 @@ files:
|
|
|
434
425
|
- app/views/wco_email/lead_action_templates/_header.haml
|
|
435
426
|
- app/views/wco_email/lead_actions/_header.haml
|
|
436
427
|
- app/views/wco_email/message_stubs/_index.haml
|
|
437
|
-
- app/views/wco_email/messages/_form_reply.haml-trash
|
|
438
428
|
- app/views/wco_email/messages/_meta.haml
|
|
439
429
|
- app/views/wco_email/messages/show.haml
|
|
440
430
|
- app/views/wco_email/messages/show_iframe.haml
|
|
441
431
|
- app/views/wco_email/sessions/new.html.erb
|
|
432
|
+
- config/initializers/08_integrations.rb
|
|
442
433
|
- config/initializers/assets.rb
|
|
443
434
|
- config/routes.rb
|
|
444
435
|
- lib/tasks/bjjcollective/sitemap.rb
|
|
@@ -447,9 +438,6 @@ files:
|
|
|
447
438
|
- lib/tasks/infinite_shelter/sitemap.rb
|
|
448
439
|
- lib/tasks/piousbox/sitemap.rb
|
|
449
440
|
- lib/tasks/publish2_wordpress_tasks.rake
|
|
450
|
-
- lib/tasks/trash/email_tasks.rake-trash
|
|
451
|
-
- lib/tasks/trash/scrape_reddit_tasks.rake-bk
|
|
452
|
-
- lib/tasks/trash/sitemap_tasks.rake-trash
|
|
453
441
|
- lib/tasks/wasya_co/sitemap.rb
|
|
454
442
|
- lib/tasks/wco_email_tasks.rake
|
|
455
443
|
- lib/wco_email.rb
|