appscms-tools-theme 3.4.5 → 3.4.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 892d21a563cc3ac92313e40272780dbbdc4b7aa6af4535311dfa83e2b7957840
4
- data.tar.gz: e70be5b92a89610415b45bdd8f10e7a5ed02ad1f89406bbab179f5c02faaba7c
3
+ metadata.gz: 138736c6791b8d94ec454bbd73f75cc9351a8249a0a62a3f7322b983d3ac5444
4
+ data.tar.gz: c282a3bb01ea40c62d972683728a3c65336516c2d892c8a19b129dab252f5fd0
5
5
  SHA512:
6
- metadata.gz: 57af6b9cacf0c23fa8fcbeeb58c44ca600af0bcf1fc634312f174ebaeda7c471361bfef95cc781e56ba4a4027ef3bf13f79cdfb08c92093ba987550b5ed7ae31
7
- data.tar.gz: d2984a7ad51c4ac857a8a919edfc4e75f386d7bf68f0b7f212eeab40950f1ce9a97a8935f2d52d6dc6eeb130cf945022a72f4041377bcf6eb439c57b81b9dfa4
6
+ metadata.gz: 39972520ec9ccb2c1112416a9c24160bb7a971dd02c5b72b58794940193d9476a12805807d02f19edf6f842d3207e04b65b9a2fe422e668afde06564b097ab65
7
+ data.tar.gz: 53b8b721f52e98ccf65bcdcf057a0daabdcb32204416aaf88e9a01cd898ed1a500e82dcc68883c3393e8e10b4a049d8ef8a0c07cd17af68e2505f28a91a9f980
@@ -3,8 +3,8 @@
3
3
  "feature": "compress-pdf",
4
4
  "htmlLangAtt": "en",
5
5
  "optionPanelTitle": "Options",
6
- "H1": "Online Video Editor",
7
- "H2": "Create your own video and edit it in any way on both your phone and computer",
6
+ "h1": "Online Video Editor",
7
+ "h2": "Create your own video and edit it in any way on both your phone and computer",
8
8
  "TITLE": "set alarm for $variable minutes from now",
9
9
  "META": "easiest way to set alarm for $variable minutes from now. Choose sound for alarm from multiple options.",
10
10
  "keywords": "key1,key2,key3,key4",
@@ -9,14 +9,11 @@ layout: home
9
9
  <div class="input_editor_bar" id="input_editor_bar">
10
10
  <label class="mb-0">Input</label>
11
11
  <div class="editor_action">
12
- <i class="fas fa-upload" id="upload_div_inner" data-toggle="tooltip" data-placement="top"
13
- title="File Upload">
12
+ <i class="fas fa-upload" id="upload_div_inner" title="File Upload">
14
13
  </i>
15
- <i class="fa fa-trash-alt cross_icon" data-toggle="tooltip" data-placement="top"
16
- title="Clear"></i>
17
- <i class="fas fa-copy copy_icon" id="inputcopy" data-toggle="tooltip" data-placement="top"
18
- title="Copy"></i>
19
- <i data-toggle="tooltip" data-placement="top" title="Download"
14
+ <i class="fa fa-trash-alt cross_icon" title="Clear"></i>
15
+ <i class="fas fa-copy copy_icon" id="inputcopy" title="Copy"></i>
16
+ <i title="Download"
20
17
  class="save_icon fas fa-cloud-download-alt" id="input_save"></i>
21
18
  <!-- <img src="/img/download.png" class="save_icon" id="input_save" alt="save_icon" /> -->
22
19
  </div>
@@ -43,12 +40,9 @@ layout: home
43
40
  {%- endif -%}
44
41
 
45
42
  <div class="editor_action">
46
- <i data-toggle="tooltip" data-placement="top" title="Delete"
47
- class="fa fa-trash-alt cross_icon"></i>
48
- <i class="fas fa-copy copy_icon" id="outputcopy" data-toggle="tooltip" data-placement="top"
49
- title="Copy"></i>
50
- <i data-toggle="tooltip" data-placement="top" title="Download"
51
- class="save_icon fas fa-cloud-download-alt" id="input_save"></i>
43
+ <i title="Delete" class="fa fa-trash-alt cross_icon"></i>
44
+ <i class="fas fa-copy copy_icon" id="outputcopy" title="Copy"></i>
45
+ <i title="Download" class="save_icon fas fa-cloud-download-alt" id="input_save"></i>
52
46
  </div>
53
47
 
54
48
  </div>
@@ -59,5 +53,4 @@ layout: home
59
53
  </div>
60
54
  </div>
61
55
  <input data-sitename="{{site.name}}" type="file" id="file_upload" accept="{{page.type}}"
62
- style="height: 1px; width: 1px; visibility: hidden" />
63
-
56
+ style="height: 1px; width: 1px; visibility: hidden" />
@@ -90,6 +90,9 @@
90
90
  }
91
91
 
92
92
  @media (max-width:768px) {
93
+ #left_editor_div, #right_editor_div{
94
+ order: 1;
95
+ }
93
96
  .editor {
94
97
  flex-direction: column;
95
98
  gap: 20px;
@@ -1,5 +1,6 @@
1
1
  let input_editor, output_editor, data;
2
2
  output_editor = ace.edit("output_editor");
3
+ output_editor.setReadOnly(true)
3
4
  output_editor.session.setMode("ace/mode/json");
4
5
  input_editor = ace.edit("input_editor");
5
6
  input_editor.session.setMode("ace/mode/json");
@@ -12,9 +13,7 @@ let deleteEditorInputTxt = document.querySelector(".input_editor_bar .cross_icon
12
13
  let deleteEditorOuputTxt = document.querySelector(".output_editor_bar .cross_icon");
13
14
  const siteName = file_upload.dataset.sitename
14
15
  let selectedFile
15
- $(function () {
16
- $('[data-toggle="tooltip"]').tooltip()
17
- })
16
+
18
17
  upload_div_inner.onclick = function () {
19
18
  document.querySelector("#file_upload").click();
20
19
  };
@@ -47,12 +46,6 @@ function editorActions() {
47
46
  el.select();
48
47
  document.execCommand("copy");
49
48
  e.target.setAttribute('data-original-title', 'Copied !')
50
- const tooltip = new bootstrap.Tooltip(e.target);
51
- tooltip.show()
52
- setTimeout(() => {
53
- e.target.setAttribute('data-original-title', 'Copy !')
54
- tooltip.hide()
55
- }, 800)
56
49
  })
57
50
  outputcopyButton.addEventListener("click", (e) => {
58
51
  const el = document.createElement("textarea");
@@ -61,12 +54,6 @@ function editorActions() {
61
54
  el.select();
62
55
  document.execCommand("copy");
63
56
  e.target.setAttribute('data-original-title', 'Copied !')
64
- const tooltip = new bootstrap.Tooltip(e.target);
65
- tooltip.show()
66
- setTimeout(() => {
67
- e.target.setAttribute('data-original-title', 'Copy !')
68
- tooltip.hide()
69
- }, 800)
70
57
  })
71
58
  }
72
59
  function file_saving_decision(flag) {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.5
4
+ version: 3.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms