The new Windows 10 browser doesn't like Texags

4,591 Views | 26 Replies | Last: 7 yr ago by Courtesy Flush
EMY92
How long do you want to ignore this user?
AG
I've only played with it a little bit, but nothing happens when you hit the quote apostrophes on another's post.
Cloud
How long do you want to ignore this user?
Have to hit the back button multiple times for it to go back also. Hopefully staff can take care of this.
reb,
How long do you want to ignore this user?
AG
quote:
I've only played with it a little bit, but nothing happens when you hit the quote apostrophes on another's post.
To clarify...do you mean just the new Windows 10 browser, Edge? Do other browsers like Chrome and Firefox work on Windows 10?
EMY92
How long do you want to ignore this user?
AG
The Edge browser doesn't like posting on Texags.

Everything else works great in that browser.
95_Aggie
How long do you want to ignore this user?
AG
TexAgs doesn't work well on IE either.
Sentinel
How long do you want to ignore this user?
AG
Try adding texags.com to the Compatibility View list in the meantime.
reb,
How long do you want to ignore this user?
AG
quote:
The Edge browser doesn't like posting on Texags.

Everything else works great in that browser.

K. Just wanted to clarify that Chrome and Firefox do work just fine in Windows10, I've tested both.

Trying out the Edge browser, a spinning blue circle when you hit the quote button, and it basically disables the cursor completely since you cannot click on anything else within the page until you refresh.

Some quick-and-dirty debugging. I can pin the problem to any element in the postAction class with the data-action attribute. Any of those elements replicates the error. So in addition to what OP is saying with quoting posts, it also happens with the Post-Reply and Post-Edit post button.

The BlueStar button works fine. It is in the postAction class but has no data-action attribute.

The SkipToBeginning, PreviousPage, NextPage, and SkipToEnd buttons work fine. They have the data-action attribute and are not in the postAction class.

The postAction class CSS:

quote:
#forums a.postAction{display:block;height:18px}
#forums .postAction{cursor:pointer;float:left}

...which looks fine. So, there are three instances where we can invoke the bug: quote, reply, edit. In addition to all being in the postAction class, they are also individually parts of the postQuote, postReply, and postEdit classes, respectively. The CSS for those:

quote:
#forums .postQuote{background:#efefef}
.postQuote{background:url("http://pmtexags.edgesuite.net/web/themes/svg/quote-small-grey-b.svg") no-repeat left 2px;width:14px;margin-right:11px}
#forums .vanillaPost .postActions a.postQuote{background:url("http://pmtexags.edgesuite.net/web/themes/svg/quote-small-grey-d.svg") no-repeat left 2px}
#forums .postActions a.postQuote:hover{background:url("http://pmtexags.edgesuite.net/web/themes/svg/quote-small-grey-b.svg") no-repeat left 2px}

#forums .postReply{background:#efefef}
#forums .postActions a.postReply{background:url("http://pmtexags.edgesuite.net/web/themes/svg/reply-small-grey-b.svg") no-repeat left 2px;width:15px;margin-right:11px}
#forums .vanillaPost .postActions a.postReply{background:url("http://pmtexags.edgesuite.net/web/themes/svg/reply-small-grey-d.svg") no-repeat left 2px}
#forums .postActions a.postReply:hover{background:url("http://pmtexags.edgesuite.net/web/themes/svg/reply-small-grey-b.svg") no-repeat left 2px}

#forums .postEdit{}
#forums .postControls a.postEdit{background:url("http://pmtexags.edgesuite.net/web/themes/svg/pencil-small-grey-b.svg") no-repeat left top;width:16px}
#forums .vanillaPost .postControls a.postEdit{background:url("http://pmtexags.edgesuite.net/web/themes/svg/pencil-small-grey-d.svg") no-repeat left top}
#forums .postControls a.postEdit:hover{background:url("http://pmtexags.edgesuite.net/web/themes/svg/pencil-small-grey-b.svg") no-repeat left top}

Maybe I'm overlooking something but again, looks fine. All those properties they have also look to be properties of classes on working buttons so ruling CSS errors out.

I don't see any references to postAction or data-action (or, for the matter, postQuote, postReply, or postEdit) in the javascript/jquery so I guess that means that couldn't be causing the error. Did some googling for existence of known bugs in Edge involving data-action and turned up nothin, therefore, I got nothin If its truly a bug in Edge and not a texags issue, I don't know where to keep looking. This is where the people who get paid to do this take over.
Cloud
How long do you want to ignore this user?
quote:
quote:
The Edge browser doesn't like posting on Texags.

Everything else works great in that browser.

K. Just wanted to clarify that Chrome and Firefox do work just fine in Windows10, I've tested both.

Trying out the Edge browser, a spinning blue circle when you hit the quote button, and it basically disables the cursor completely since you cannot click on anything else within the page until you refresh.

Some quick-and-dirty debugging. I can pin the problem to any element in the postAction class with the data-action attribute. Any of those elements replicates the error. So in addition to what OP is saying with quoting posts, it also happens with the Post-Reply and Post-Edit post button.

The BlueStar button works fine. It is in the postAction class but has no data-action attribute.

The SkipToBeginning, PreviousPage, NextPage, and SkipToEnd buttons work fine. They have the data-action attribute and are not in the postAction class.

The postAction class CSS:

quote:
#forums a.postAction{display:block;height:18px}
#forums .postAction{cursor:pointer;float:left}

...which looks fine. So, there are three instances where we can invoke the bug: quote, reply, edit. In addition to all being in the postAction class, they are also individually parts of the postQuote, postReply, and postEdit classes, respectively. The CSS for those:

quote:
#forums .postQuote{background:#efefef}
.postQuote{background:url("http://pmtexags.edgesuite.net/web/themes/svg/quote-small-grey-b.svg") no-repeat left 2px;width:14px;margin-right:11px}
#forums .vanillaPost .postActions a.postQuote{background:url("http://pmtexags.edgesuite.net/web/themes/svg/quote-small-grey-d.svg") no-repeat left 2px}
#forums .postActions a.postQuote:hover{background:url("http://pmtexags.edgesuite.net/web/themes/svg/quote-small-grey-b.svg") no-repeat left 2px}

#forums .postReply{background:#efefef}
#forums .postActions a.postReply{background:url("http://pmtexags.edgesuite.net/web/themes/svg/reply-small-grey-b.svg") no-repeat left 2px;width:15px;margin-right:11px}
#forums .vanillaPost .postActions a.postReply{background:url("http://pmtexags.edgesuite.net/web/themes/svg/reply-small-grey-d.svg") no-repeat left 2px}
#forums .postActions a.postReply:hover{background:url("http://pmtexags.edgesuite.net/web/themes/svg/reply-small-grey-b.svg") no-repeat left 2px}

#forums .postEdit{}
#forums .postControls a.postEdit{background:url("http://pmtexags.edgesuite.net/web/themes/svg/pencil-small-grey-b.svg") no-repeat left top;width:16px}
#forums .vanillaPost .postControls a.postEdit{background:url("http://pmtexags.edgesuite.net/web/themes/svg/pencil-small-grey-d.svg") no-repeat left top}
#forums .postControls a.postEdit:hover{background:url("http://pmtexags.edgesuite.net/web/themes/svg/pencil-small-grey-b.svg") no-repeat left top}

Maybe I'm overlooking something but again, looks fine. All those properties they have also look to be properties of classes on working buttons so ruling CSS errors out.

I don't see any references to postAction or data-action (or, for the matter, postQuote, postReply, or postEdit) in the javascript/jquery so I guess that means that couldn't be causing the error. Did some googling for existence of known bugs in Edge involving data-action and turned up nothin, therefore, I got nothin If its truly a bug in Edge and not a texags issue, I don't know where to keep looking. This is where the people who get paid to do this take over.
Test
Cloud
How long do you want to ignore this user?
quote, post reply, and edit are working for me in edge.

what ISN'T working, however, is the back button
Big_Russ
How long do you want to ignore this user?
AG
Russ


Thanks,


I'm sure y'all will get it soon.


However, the hitting return still advances up instead of down.


I don't know what y'all did, but the back button works now! Thanks for that.
95_Aggie
How long do you want to ignore this user?
AG
quote:
but the back button works now!
nope
Big_Russ
How long do you want to ignore this user?
AG
quote:
quote:
but the back button works now!
nope
That's weird. It starting working on my work computer (Internet Explorer) and my home PC (Edge) the same day. Been working since.
95_Aggie
How long do you want to ignore this user?
AG
Neither the back button at the top left of the Edge toolbar or the back button on my Logitech mouse work on this website. But I don't think they care.
EMY92
How long do you want to ignore this user?
AG
quote:
quote:
but the back button works now!
nope

I haven't had any trouble browsing Texags with the Edge browser.


As noted above, the enter button sends the cursor back to the beginning of the line that you are on.

However, I was just able to quote and post using Edge for the first time. It's almost there, just the enter key issue remains for me.
Big_Russ
How long do you want to ignore this user?
AG
Don't know what changed, but after a couple of weeks of the back arrow working at home and work, today it stopped working in both Edge and IE.
jpc08
How long do you want to ignore this user?
jpc08
How long do you want to ignore this user?
AG
Just tried to post that the back button is still an issue and everything else worked fine. Obviously that is not the case because when I hit post, it just returned the blank post above.
reb,
How long do you want to ignore this user?
AG
No ooshwa response yet? That's weird.
La Fours
How long do you want to ignore this user?
AG

The thread navigation buttons at the bottom of a thread are displaying very large for the previous page back arrow and the back to first page icon.











La Fours
How long do you want to ignore this user?
AG
Also, I just noticed some weirdness with the text box in a new post. When I made that previous post just now, after I was finished typing and went to hit enter to put a couple of lines between the text and the image, when I hit the enter key, the cursor went to the beginning of my text and put the blank line at the top of my text, not the bottom.
Big_Russ
How long do you want to ignore this user?
AG
After months of not working, the back button is working for me in Edge and Internet Explorer at home and work (2 different computers) once again. Did y'all change something or was it Microsoft?
DallasAggies01
How long do you want to ignore this user?
AG
Has anyone found a fix for this. Just got a new surface and back button is not working for me on IE11 either.
tunefx
How long do you want to ignore this user?
AG
Previous and First nav buttons are still a problem in Edge.

Upper


Lower


Microsoft Edge: 25.10586.0.0
Microsoft EdgeHTML: 13.10586
OS: Win 10 Pro
OS Ver: 1511
OS Build: 10586.218








lucid
How long do you want to ignore this user?
AG
We'll get that fixed
95_Aggie
How long do you want to ignore this user?
AG
Copy and Paste doesn't work in a post reply either, especially when using the quote box.
agracer
How long do you want to ignore this user?
AG
It's the ads causing the issue;

Microsoft Back Button

texags is this going to get fixed?
95_Aggie
How long do you want to ignore this user?
AG
Happy to say that the Windows 10 Anniversary version of Edge seems to fix all of these problems.
Courtesy Flush
How long do you want to ignore this user?
AG





I am not able to copy and paste into the reply box and if I press enter, it inserts spaces above what I am typing. Notice how in this message my words are about 5 spaces below the top of the text box.

Refresh
Page 1 of 1
 
×
subscribe Verify your student status
See Subscription Benefits
Trial only available to users who have never subscribed or participated in a previous trial.