-
Notifications
You must be signed in to change notification settings - Fork 345
提高gitment的浏览器兼容性 #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
GeekaholicLin
wants to merge
10
commits into
imsun:master
Choose a base branch
from
GeekaholicLin:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
提高gitment的浏览器兼容性 #52
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
bd261e7
browser compatibility
GeekaholicLin aa7c305
fix config error && add npm script
GeekaholicLin ffa970e
fix browser compatibility for IE11/10 etc.
GeekaholicLin 9fdfef5
support uglifying js
GeekaholicLin bdd45fe
remove console.log
GeekaholicLin 1c68090
fix bugs using instance && do not change api as posible
GeekaholicLin 54af3cb
format
GeekaholicLin 2f9a7ba
format
GeekaholicLin f0e2a0b
api break && webpack config and npm script optimize
GeekaholicLin 50ff9dd
fix toString.call not working in IE && recover origin api
GeekaholicLin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
找到IE的问题所在了。。确实是API的问题。我们简单地走一下流程。当调用
gitment.render(container)的时候,实际上是调用instance.render(container),而在instance.render(container)中获取了instance.theme[renderer]也就是this.theme.render(state, instance),是渲染的总入口(囊括了Header等),但是在this.theme.render(state, instance)中调用,比如默认的this.theme.render(state, instance)是调用以下:问题来了,
instance.renderHeader(state, instance)的使用是错误的,签名对应不上,正确的参数列表应该是(container),因为instance.renderHeader接收的是一个element或字符串。而实际上传进去的state和instance,那container是一个state对象,正确应该是使用instance.theme.renderxxxx(state, instance)(只渲染不操作,因为操作已经在container.appendChild有了呀),不过并无大影响,因为你的isString()已经帮你过滤了不正确的参数,粗略看了一下,不过是外加了一个div。所以本来改了API后又改了回来但是对于IE不通过的原因是,
toString不兼容。。所以加了一个空对象。There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
完善的如何了,最新的引用地址是哪个?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
非官方的引用地址可以看上面的记录,等作者有空了并且review通过了应该就可以merge了。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
好的,先用着你的...
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, @GeekaholicLin . 大佬,刚看到你博客了,有兴趣互相添加友链否?宇宙湾(https://yuzhouwan.com)