Skip to content

Commit c2bf982

Browse files
committedJul 10, 2024·
max width fix
1 parent 01d93fe commit c2bf982

4 files changed

+16
-10
lines changed
 

‎heic-to-jpg-converter.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ <h3 class="box-title">Download Your Converted Image From Here</h3>
9898
<label for="base64">Converted Image</label>
9999
<div id="target"></div>
100100
</div>
101-
101+
102102
</div>
103103
<div class="box-footer" id="download-div" style="display:none">
104104
<div class="btn-group">
@@ -246,10 +246,10 @@ <h3 class="box-title">How to reduce converted image size?</h3>
246246
showInProgress();
247247
const filesSelected = document.getElementById('myFile').files;
248248
context.convertedFileExtension = findExtension(context);
249-
if (filesSelected
250-
&& filesSelected.length > 0
251-
&& context.originalFileMeta
252-
&& context.originalFileMeta.fileExtension
249+
if (filesSelected
250+
&& filesSelected.length > 0
251+
&& context.originalFileMeta
252+
&& context.originalFileMeta.fileExtension
253253
&& context.originalFileMeta.fileExtension.toUpperCase() === 'HEIC'
254254
&& context.format
255255
&& context.convertedFileExtension) {
@@ -290,8 +290,8 @@ <h3 class="box-title">How to reduce converted image size?</h3>
290290
$("#myFile").selectOnFocus();
291291
$("#base64").selectOnFocus();
292292
$('#converters-category').addClass('active');
293-
293+
$('.markdown-body').attr('style', 'max-width:100%;');
294294
});
295295
</script>
296296

297-
</html>
297+
</html>

‎index.html

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Online Developer Tools | FromDev
33
layout: post
4-
---
4+
---
55
<html>
66

77
<head>
@@ -136,6 +136,10 @@ <h3 class="box-title">Generation Tools</h3>
136136
</div>
137137
<!-- ./wrapper -->
138138
{% include theme-bottom-js %}
139-
139+
<script>
140+
$(document).ready(function () {
141+
$('.markdown-body').attr('style', 'max-width:100%;');
142+
});
143+
</script>
140144
</body>
141145
</html>

‎javascript-escape-unescape.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: JavaScript String Escape Online | Developer Tools
3-
layout: post
3+
layout: post
44
---
55
<html>
66

@@ -243,6 +243,7 @@ <h3 class="box-title">How can I learn JavaScript?</h3>
243243
});
244244
$("#inputText").selectOnFocus();
245245
$('#string-utility-category').addClass('active');
246+
$('.markdown-body').attr('style', 'max-width:100%;');
246247
});
247248
</script>
248249

‎jquery-quickstart-snippet.html

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ <h3 class="box-title">How to use jQuery Plugin snippet?</h3>
140140
$("#pluginSnippet").selectOnFocus();
141141
$("#pluginName").selectOnFocus();
142142
$('#generators-category').addClass('active');
143+
$('.markdown-body').attr('style', 'max-width:100%;');
143144
});
144145
</script>
145146

0 commit comments

Comments
 (0)
Please sign in to comment.