mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 18:29:07 +00:00
Catch the case where filename is shorter than the extension length.
This commit is contained in:
parent
85c1704fc5
commit
aab7a8713e
1 changed files with 6 additions and 1 deletions
|
@ -8,7 +8,12 @@ is_mobile_safari = (user_agent) ->
|
|||
user_agent.indexOf('iPad') >= 0)
|
||||
|
||||
is_html = (file) ->
|
||||
file.name.lastIndexOf('.html') == file.name.length - 5
|
||||
ends_with = (ext) ->
|
||||
file.name? and
|
||||
file.name.length > ext.length and
|
||||
(file.name.lastIndexOf(ext) == file.name.length - ext.length)
|
||||
|
||||
ends_with('.html') or ends_with('.htm') or ends_with('.xhtml')
|
||||
|
||||
module.exports =
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue