[JBoss JIRA] (JBIDE-21178) [CLONE]Touch events for BrowserSim are not set properly
by Konstantin Marmalyukov (JIRA)
Konstantin Marmalyukov created JBIDE-21178:
----------------------------------------------
Summary: [CLONE]Touch events for BrowserSim are not set properly
Key: JBIDE-21178
URL: https://issues.jboss.org/browse/JBIDE-21178
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: browsersim
Affects Versions: 4.3.0.CR1
Environment: JBDS 9.0.0.CR1-v20150918-0257-B105 Fedora 22 KDE 64bit
Reporter: Vlado Pakan
Assignee: Konstantin Marmalyukov
Fix For: 4.3.1.Beta1, 4.4.0.Alpha1
1. Create HTML page with this content:
{code:html}
<!DOCTYPE html>
<html>
<head>
<title>sample</title>
<script type="text/javascript">
function window_onload() {
document.getElementById('touchable').addEventListener('touchstart', function(ev) {
alert('touchstart')}, false);
document.getElementById('touchable').addEventListener('touchend', function(ev) {
alert('touchend')}, false);
document.getElementById('touchable').addEventListener('touchmove', function(ev) {
alert('touchmove')}, false);
}
</script>
</head>
<body onload='window_onload();'>
<div id='touchable'>This element is touchable.</div>
</body>
</html>
{code}
2. Open this page in BrowserSim
3. Enable touch events for BrowserSim
4. Click somewhere within the page in BrowserSim
ERROR:
{noformat}
!JavaScript WARN: Converting `ontouchstart` property to event listener.
!JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
!JavaScript WARN: Converting `ontouchend` property to event listener.
!JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
{noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months
[JBoss JIRA] (JBIDE-21178) [CLONE]Touch events for BrowserSim are not set properly
by Konstantin Marmalyukov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21178?page=com.atlassian.jira.plugi... ]
Konstantin Marmalyukov closed JBIDE-21178.
------------------------------------------
Resolution: Done
> [CLONE]Touch events for BrowserSim are not set properly
> -------------------------------------------------------
>
> Key: JBIDE-21178
> URL: https://issues.jboss.org/browse/JBIDE-21178
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim
> Affects Versions: 4.3.0.CR1
> Environment: JBDS 9.0.0.CR1-v20150918-0257-B105 Fedora 22 KDE 64bit
> Reporter: Vlado Pakan
> Assignee: Konstantin Marmalyukov
> Fix For: 4.3.1.Beta1
>
>
> 1. Create HTML page with this content:
> {code:html}
> <!DOCTYPE html>
> <html>
> <head>
> <title>sample</title>
> <script type="text/javascript">
> function window_onload() {
> document.getElementById('touchable').addEventListener('touchstart', function(ev) {
> alert('touchstart')}, false);
> document.getElementById('touchable').addEventListener('touchend', function(ev) {
> alert('touchend')}, false);
> document.getElementById('touchable').addEventListener('touchmove', function(ev) {
> alert('touchmove')}, false);
> }
> </script>
> </head>
> <body onload='window_onload();'>
> <div id='touchable'>This element is touchable.</div>
> </body>
> </html>
> {code}
> 2. Open this page in BrowserSim
> 3. Enable touch events for BrowserSim
> 4. Click somewhere within the page in BrowserSim
> ERROR:
> {noformat}
> !JavaScript WARN: Converting `ontouchstart` property to event listener.
> !JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
> !JavaScript WARN: Converting `ontouchend` property to event listener.
> !JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months
[JBoss JIRA] (JBIDE-21178) [CLONE]Touch events for BrowserSim are not set properly
by Konstantin Marmalyukov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21178?page=com.atlassian.jira.plugi... ]
Konstantin Marmalyukov updated JBIDE-21178:
-------------------------------------------
Fix Version/s: (was: 4.4.0.Alpha1)
> [CLONE]Touch events for BrowserSim are not set properly
> -------------------------------------------------------
>
> Key: JBIDE-21178
> URL: https://issues.jboss.org/browse/JBIDE-21178
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: browsersim
> Affects Versions: 4.3.0.CR1
> Environment: JBDS 9.0.0.CR1-v20150918-0257-B105 Fedora 22 KDE 64bit
> Reporter: Vlado Pakan
> Assignee: Konstantin Marmalyukov
> Fix For: 4.3.1.Beta1
>
>
> 1. Create HTML page with this content:
> {code:html}
> <!DOCTYPE html>
> <html>
> <head>
> <title>sample</title>
> <script type="text/javascript">
> function window_onload() {
> document.getElementById('touchable').addEventListener('touchstart', function(ev) {
> alert('touchstart')}, false);
> document.getElementById('touchable').addEventListener('touchend', function(ev) {
> alert('touchend')}, false);
> document.getElementById('touchable').addEventListener('touchmove', function(ev) {
> alert('touchmove')}, false);
> }
> </script>
> </head>
> <body onload='window_onload();'>
> <div id='touchable'>This element is touchable.</div>
> </body>
> </html>
> {code}
> 2. Open this page in BrowserSim
> 3. Enable touch events for BrowserSim
> 4. Click somewhere within the page in BrowserSim
> ERROR:
> {noformat}
> !JavaScript WARN: Converting `ontouchstart` property to event listener.
> !JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
> !JavaScript WARN: Converting `ontouchend` property to event listener.
> !JavaScript ERROR: TypeError: Unable to delete property. on line 118 for file:///.../jboss-touchevents/src/main/webapp/index.html
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months
[JBoss JIRA] (JBIDE-21177) [CLONE]Livereload doesn't work stable with CordovaSim / BrowserSim
by Konstantin Marmalyukov (JIRA)
Konstantin Marmalyukov created JBIDE-21177:
----------------------------------------------
Summary: [CLONE]Livereload doesn't work stable with CordovaSim / BrowserSim
Key: JBIDE-21177
URL: https://issues.jboss.org/browse/JBIDE-21177
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: browsersim, cordovasim, livereload
Affects Versions: 4.3.0.CR1
Reporter: Ilya Buziuk
Assignee: Konstantin Marmalyukov
Priority: Critical
Fix For: 4.3.1.Beta1
It seems that Livereload stopped working on simple pages like:
{code}
<!DOCTYPE html>
<html>
<head>
<title>Insert title here</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
{code}
But at the same time it works fine with some complex projects like jboss-as-kitchensink-html5-mobile & https://github.com/ibuziuk/cordovasim-demo
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 4 months