|
|
|
Regards,
Old3eyes
old3eyes: I've all but given up on this latest preview as compared to the others it's like watching paint dry..
Here is a crazy notion, lets give peace a chance.
// window.onload = function () {
var url = getUrl();
var urlElements = document.getElementsByClassName("webpageURL");
for (var i = 0; i < urlElements.length; i++)
{
urlElements[i].textContent = url;
}
getInfo();
}
function getInfo()
{
//first check if user is connected to the internet
checkConnection();
//attach an event to detect changes in network connectivity
if (document.addEventListener)
{
addEventListener("offline", reportConnectionEvent, false);
}
else
{
attachEvent("onoffline", reportConnectionEvent);
}
//set events to fire
document.body.ononline = reportConnectionEvent;
document.body.onoffline = reportConnectionEvent;
}
function checkConnection()
{
var notConnected = document.getElementById("NotConnected");
var pageUnavailable = document.getElementById("PageUnavailable");
if (navigator.onLine) //the network connection is connected
{
document.title = "Can't reach this page"; // Need to make sure this is localized
notConnected.style.display = "none";
pageUnavailable.style.display = "";
}
else // no internet
{
document.title = "You're not connected";
notConnected.style.display = "";
pageUnavailable.style.display = "none";
}
}
function reportConnectionEvent(e)
{
if (!e) e = window.event;
if ('online' == e.type)
{
setTimeout ( "clickRefresh()", 1000 ); //using a setTimeout to account for any lag between us getting the connected event and the machine obtaining an IP
}
else if ('offline' == e.type)
{
checkConnection();
}
else
{
checkConnection();
}
}
// ]]>
Hmm, we can't reach this page.
Try this
MikeB4:old3eyes: I've all but given up on this latest preview as compared to the others it's like watching paint dry..
In what aspects?
My experience with 10122 has been positive, I haven't even suffered the AMD Spartan bug on my AMD powered test machine.
Regards,
Old3eyes
old3eyes:MikeB4:old3eyes: I've all but given up on this latest preview as compared to the others it's like watching paint dry..
In what aspects?
My experience with 10122 has been positive, I haven't even suffered the AMD Spartan bug on my AMD powered test machine.
In that when i load up some of our work CTI applications it takes a good 10 minutes for the PC to become operational / usable. The previous previews were way faster ..
Here is a crazy notion, lets give peace a chance.
MikeB4:old3eyes:MikeB4:old3eyes: I've all but given up on this latest preview as compared to the others it's like watching paint dry..
In what aspects?
My experience with 10122 has been positive, I haven't even suffered the AMD Spartan bug on my AMD powered test machine.
In that when i load up some of our work CTI applications it takes a good 10 minutes for the PC to become operational / usable. The previous previews were way faster ..
That is a tad long, good for coffee breaks though. Are you just testing these on a non-production machine or are you using Windows 10 Preview on production machines? The later is
not recommended. If you are testing definitely report your experience in the Insider Hub.
Regards,
Old3eyes
Ding Ding Ding Ding Ding : Ice cream man , Ice cream man
Presso: So went out for a couple of hours and found that mine has now updated from 10122 to 10130 , No idea of the changes as yet.
Presso: So went out for a couple of hours and found that mine has now updated from 10122 to 10130 , No idea of the changes as yet.

Software Engineer
(the practice of real science, engineering and management)
A.I. (Automation rebranded)
Gender Neutral
(a person who believes in equality and who does not believe in/use stereotypes. Examples such as gender, binary, nonbinary, male/female etc.)
...they/their/them...
TwoSeven: The thing that is causing me an issue on windows 10 is the 'all apps' icon on the start screen that was added on windows 8.1 (after much consumer feedback) is now gone or has been hidden. So if you are a developer or power user and need to get access to all of the smaller programs that get installed with a major piece of s/w, it is now difficult to impossible (I have had to resort to opening the program location and using windows explorer).
For those that don't know what I am talking about - this is the little down arrow that appears under the left column on the start screen in windows 8.1 when you mouse-over its location.

Balm its gone!
Brumfondl: Odd. On the Start Menu on my build 10130 machine there is an All Apps menu in the bottom left hand corner...
Software Engineer
(the practice of real science, engineering and management)
A.I. (Automation rebranded)
Gender Neutral
(a person who believes in equality and who does not believe in/use stereotypes. Examples such as gender, binary, nonbinary, male/female etc.)
...they/their/them...
|
|
|