Trouble installing ddccontrol
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
1
down vote
favorite
I am running Kubuntu 14.04 on a 32-bit system and I'm trying to install ddccontrol so I can change my monitor brightness without touching the monitor in a GUI. I understand I need to install the CLI version first to get the GUI version (gddccontrol) as is my goal. I have found multiple packages on GitHub and Launchpad and have tried all that I can find. Most of the .deb packages IâÂÂve ran with package installer have an error of Cannot satisfy dependencies. When I try the instructions on GitHub along with other suggestions like sudo apt-get or apt install, I get the error "E: unable to locate package" and then the name of the package I'm trying to install. Recently I got an error of no installation candidate.
apt system-installation brightness
add a comment |Â
up vote
1
down vote
favorite
I am running Kubuntu 14.04 on a 32-bit system and I'm trying to install ddccontrol so I can change my monitor brightness without touching the monitor in a GUI. I understand I need to install the CLI version first to get the GUI version (gddccontrol) as is my goal. I have found multiple packages on GitHub and Launchpad and have tried all that I can find. Most of the .deb packages IâÂÂve ran with package installer have an error of Cannot satisfy dependencies. When I try the instructions on GitHub along with other suggestions like sudo apt-get or apt install, I get the error "E: unable to locate package" and then the name of the package I'm trying to install. Recently I got an error of no installation candidate.
apt system-installation brightness
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am running Kubuntu 14.04 on a 32-bit system and I'm trying to install ddccontrol so I can change my monitor brightness without touching the monitor in a GUI. I understand I need to install the CLI version first to get the GUI version (gddccontrol) as is my goal. I have found multiple packages on GitHub and Launchpad and have tried all that I can find. Most of the .deb packages IâÂÂve ran with package installer have an error of Cannot satisfy dependencies. When I try the instructions on GitHub along with other suggestions like sudo apt-get or apt install, I get the error "E: unable to locate package" and then the name of the package I'm trying to install. Recently I got an error of no installation candidate.
apt system-installation brightness
I am running Kubuntu 14.04 on a 32-bit system and I'm trying to install ddccontrol so I can change my monitor brightness without touching the monitor in a GUI. I understand I need to install the CLI version first to get the GUI version (gddccontrol) as is my goal. I have found multiple packages on GitHub and Launchpad and have tried all that I can find. Most of the .deb packages IâÂÂve ran with package installer have an error of Cannot satisfy dependencies. When I try the instructions on GitHub along with other suggestions like sudo apt-get or apt install, I get the error "E: unable to locate package" and then the name of the package I'm trying to install. Recently I got an error of no installation candidate.
apt system-installation brightness
apt system-installation brightness
asked Feb 24 at 20:46
![](https://i.stack.imgur.com/MMcXr.png?s=32&g=1)
![](https://i.stack.imgur.com/MMcXr.png?s=32&g=1)
Josh Allison
83
83
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
I think that we can get sources of ddccontrol
package from Xenial and build it on Trusty.
Usually this method is not recommended, but I do not imagine other effective method.
We will build deb-packages with debuild.
Execute the following commands:
# update package lists and install all needed build dependencies
sudo apt-get update
sudo apt-get install -y build-essential dpkg-dev libxml2-dev
libpci-dev libgtk2.0-dev devscripts autotools-dev
intltool xsltproc tidy gksu libgksu2-0 libgtop2-7 libgtop2-common
# add universe source from xenial
echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial universe" |
sudo tee /etc/apt/sources.list.d/xenial.list
sudo apt-get update
# create directory and get source package of ddccontrol from xenial
mkdir ddccontrol-xenial
cd ddccontrol-xenial
apt-get source ddccontrol
# go to ddccontrol-0.4.2 directory, compile and build deb-packages
cd ddccontrol-0.4.2
debuild -i -us -uc -b
# get ddccontrol-db from xenial and install it manually
wget http://mirrors.kernel.org/ubuntu/pool/universe/d/ddccontrol-db/ddccontrol-db_20061014-4_all.deb
sudo dpkg -i ddccontrol-db_20061014-4_all.deb
# install all
sudo dpkg -i ../*ddc*.deb
# remove universe source from xenial
sudo rm /etc/apt/sources.list.d/xenial.list
sudo apt-get update
I found real machine with Ubuntu 14.04 LTS.
It is needed to load i2c-dev
kernel module:
sudo modprobe i2c-dev
Then launch sudo ddccontrol -p
from terminal or gddccontrol
from menu.
This installs ddccontrol, but when I go to gddccontrol there is an error: No monitor supporting DDC/CI available. If your graphics card need it, please check all the required kernel modules are loaded (i2c-dev, and your framebuffer driver). I know the monitor I'm using worked with ClickMonitorDDC in windows.
â Josh Allison
Feb 27 at 1:58
I think that main part of question is solved - we got ddccontrol installing on trusty. I tested this method on VirtualBox, so it uses 'virtual monitor'. I have never used DDC in modern Ubuntus. You can try to launch it from Xenial LiveCD/USB and compare results. Also you can try to check i2c availability withsudo get-edid | parse-edid
(both commands are available fromread-edid
package).
â N0rbert
Feb 27 at 20:21
1
I'm not sure what the output means. It says DDC1 not supported in transfers but DDC2 is. EDID is successful as well as VBE interface. At the end it says "Looks like VBE was susccessful."
â Josh Allison
Feb 27 at 23:29
Just tested on real 14.04 LTS -sudo modprobe i2c-dev
is needed before launchingddccontrol
.
â N0rbert
Feb 28 at 7:51
I tried this on two computers (one kubuntu and another ddc program in windows 7) with three different montiors. Two work with the windows program but not with this setup. I know they should work because the third monitor does not support DDC. After loading i2c-dev I am now getting the error "The current monitor is in the database but does not support DDCC/CI." along with something about trying a different port on the monitor. One of the monitors has a DVI and VGA and the other only has one VGA. I don't know if ddccontroll would work on the DVI because I can't connect it to my PC. Any ideas?
â Josh Allison
Mar 1 at 1:26
 |Â
show 1 more comment
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
I think that we can get sources of ddccontrol
package from Xenial and build it on Trusty.
Usually this method is not recommended, but I do not imagine other effective method.
We will build deb-packages with debuild.
Execute the following commands:
# update package lists and install all needed build dependencies
sudo apt-get update
sudo apt-get install -y build-essential dpkg-dev libxml2-dev
libpci-dev libgtk2.0-dev devscripts autotools-dev
intltool xsltproc tidy gksu libgksu2-0 libgtop2-7 libgtop2-common
# add universe source from xenial
echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial universe" |
sudo tee /etc/apt/sources.list.d/xenial.list
sudo apt-get update
# create directory and get source package of ddccontrol from xenial
mkdir ddccontrol-xenial
cd ddccontrol-xenial
apt-get source ddccontrol
# go to ddccontrol-0.4.2 directory, compile and build deb-packages
cd ddccontrol-0.4.2
debuild -i -us -uc -b
# get ddccontrol-db from xenial and install it manually
wget http://mirrors.kernel.org/ubuntu/pool/universe/d/ddccontrol-db/ddccontrol-db_20061014-4_all.deb
sudo dpkg -i ddccontrol-db_20061014-4_all.deb
# install all
sudo dpkg -i ../*ddc*.deb
# remove universe source from xenial
sudo rm /etc/apt/sources.list.d/xenial.list
sudo apt-get update
I found real machine with Ubuntu 14.04 LTS.
It is needed to load i2c-dev
kernel module:
sudo modprobe i2c-dev
Then launch sudo ddccontrol -p
from terminal or gddccontrol
from menu.
This installs ddccontrol, but when I go to gddccontrol there is an error: No monitor supporting DDC/CI available. If your graphics card need it, please check all the required kernel modules are loaded (i2c-dev, and your framebuffer driver). I know the monitor I'm using worked with ClickMonitorDDC in windows.
â Josh Allison
Feb 27 at 1:58
I think that main part of question is solved - we got ddccontrol installing on trusty. I tested this method on VirtualBox, so it uses 'virtual monitor'. I have never used DDC in modern Ubuntus. You can try to launch it from Xenial LiveCD/USB and compare results. Also you can try to check i2c availability withsudo get-edid | parse-edid
(both commands are available fromread-edid
package).
â N0rbert
Feb 27 at 20:21
1
I'm not sure what the output means. It says DDC1 not supported in transfers but DDC2 is. EDID is successful as well as VBE interface. At the end it says "Looks like VBE was susccessful."
â Josh Allison
Feb 27 at 23:29
Just tested on real 14.04 LTS -sudo modprobe i2c-dev
is needed before launchingddccontrol
.
â N0rbert
Feb 28 at 7:51
I tried this on two computers (one kubuntu and another ddc program in windows 7) with three different montiors. Two work with the windows program but not with this setup. I know they should work because the third monitor does not support DDC. After loading i2c-dev I am now getting the error "The current monitor is in the database but does not support DDCC/CI." along with something about trying a different port on the monitor. One of the monitors has a DVI and VGA and the other only has one VGA. I don't know if ddccontroll would work on the DVI because I can't connect it to my PC. Any ideas?
â Josh Allison
Mar 1 at 1:26
 |Â
show 1 more comment
up vote
0
down vote
accepted
I think that we can get sources of ddccontrol
package from Xenial and build it on Trusty.
Usually this method is not recommended, but I do not imagine other effective method.
We will build deb-packages with debuild.
Execute the following commands:
# update package lists and install all needed build dependencies
sudo apt-get update
sudo apt-get install -y build-essential dpkg-dev libxml2-dev
libpci-dev libgtk2.0-dev devscripts autotools-dev
intltool xsltproc tidy gksu libgksu2-0 libgtop2-7 libgtop2-common
# add universe source from xenial
echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial universe" |
sudo tee /etc/apt/sources.list.d/xenial.list
sudo apt-get update
# create directory and get source package of ddccontrol from xenial
mkdir ddccontrol-xenial
cd ddccontrol-xenial
apt-get source ddccontrol
# go to ddccontrol-0.4.2 directory, compile and build deb-packages
cd ddccontrol-0.4.2
debuild -i -us -uc -b
# get ddccontrol-db from xenial and install it manually
wget http://mirrors.kernel.org/ubuntu/pool/universe/d/ddccontrol-db/ddccontrol-db_20061014-4_all.deb
sudo dpkg -i ddccontrol-db_20061014-4_all.deb
# install all
sudo dpkg -i ../*ddc*.deb
# remove universe source from xenial
sudo rm /etc/apt/sources.list.d/xenial.list
sudo apt-get update
I found real machine with Ubuntu 14.04 LTS.
It is needed to load i2c-dev
kernel module:
sudo modprobe i2c-dev
Then launch sudo ddccontrol -p
from terminal or gddccontrol
from menu.
This installs ddccontrol, but when I go to gddccontrol there is an error: No monitor supporting DDC/CI available. If your graphics card need it, please check all the required kernel modules are loaded (i2c-dev, and your framebuffer driver). I know the monitor I'm using worked with ClickMonitorDDC in windows.
â Josh Allison
Feb 27 at 1:58
I think that main part of question is solved - we got ddccontrol installing on trusty. I tested this method on VirtualBox, so it uses 'virtual monitor'. I have never used DDC in modern Ubuntus. You can try to launch it from Xenial LiveCD/USB and compare results. Also you can try to check i2c availability withsudo get-edid | parse-edid
(both commands are available fromread-edid
package).
â N0rbert
Feb 27 at 20:21
1
I'm not sure what the output means. It says DDC1 not supported in transfers but DDC2 is. EDID is successful as well as VBE interface. At the end it says "Looks like VBE was susccessful."
â Josh Allison
Feb 27 at 23:29
Just tested on real 14.04 LTS -sudo modprobe i2c-dev
is needed before launchingddccontrol
.
â N0rbert
Feb 28 at 7:51
I tried this on two computers (one kubuntu and another ddc program in windows 7) with three different montiors. Two work with the windows program but not with this setup. I know they should work because the third monitor does not support DDC. After loading i2c-dev I am now getting the error "The current monitor is in the database but does not support DDCC/CI." along with something about trying a different port on the monitor. One of the monitors has a DVI and VGA and the other only has one VGA. I don't know if ddccontroll would work on the DVI because I can't connect it to my PC. Any ideas?
â Josh Allison
Mar 1 at 1:26
 |Â
show 1 more comment
up vote
0
down vote
accepted
up vote
0
down vote
accepted
I think that we can get sources of ddccontrol
package from Xenial and build it on Trusty.
Usually this method is not recommended, but I do not imagine other effective method.
We will build deb-packages with debuild.
Execute the following commands:
# update package lists and install all needed build dependencies
sudo apt-get update
sudo apt-get install -y build-essential dpkg-dev libxml2-dev
libpci-dev libgtk2.0-dev devscripts autotools-dev
intltool xsltproc tidy gksu libgksu2-0 libgtop2-7 libgtop2-common
# add universe source from xenial
echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial universe" |
sudo tee /etc/apt/sources.list.d/xenial.list
sudo apt-get update
# create directory and get source package of ddccontrol from xenial
mkdir ddccontrol-xenial
cd ddccontrol-xenial
apt-get source ddccontrol
# go to ddccontrol-0.4.2 directory, compile and build deb-packages
cd ddccontrol-0.4.2
debuild -i -us -uc -b
# get ddccontrol-db from xenial and install it manually
wget http://mirrors.kernel.org/ubuntu/pool/universe/d/ddccontrol-db/ddccontrol-db_20061014-4_all.deb
sudo dpkg -i ddccontrol-db_20061014-4_all.deb
# install all
sudo dpkg -i ../*ddc*.deb
# remove universe source from xenial
sudo rm /etc/apt/sources.list.d/xenial.list
sudo apt-get update
I found real machine with Ubuntu 14.04 LTS.
It is needed to load i2c-dev
kernel module:
sudo modprobe i2c-dev
Then launch sudo ddccontrol -p
from terminal or gddccontrol
from menu.
I think that we can get sources of ddccontrol
package from Xenial and build it on Trusty.
Usually this method is not recommended, but I do not imagine other effective method.
We will build deb-packages with debuild.
Execute the following commands:
# update package lists and install all needed build dependencies
sudo apt-get update
sudo apt-get install -y build-essential dpkg-dev libxml2-dev
libpci-dev libgtk2.0-dev devscripts autotools-dev
intltool xsltproc tidy gksu libgksu2-0 libgtop2-7 libgtop2-common
# add universe source from xenial
echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial universe" |
sudo tee /etc/apt/sources.list.d/xenial.list
sudo apt-get update
# create directory and get source package of ddccontrol from xenial
mkdir ddccontrol-xenial
cd ddccontrol-xenial
apt-get source ddccontrol
# go to ddccontrol-0.4.2 directory, compile and build deb-packages
cd ddccontrol-0.4.2
debuild -i -us -uc -b
# get ddccontrol-db from xenial and install it manually
wget http://mirrors.kernel.org/ubuntu/pool/universe/d/ddccontrol-db/ddccontrol-db_20061014-4_all.deb
sudo dpkg -i ddccontrol-db_20061014-4_all.deb
# install all
sudo dpkg -i ../*ddc*.deb
# remove universe source from xenial
sudo rm /etc/apt/sources.list.d/xenial.list
sudo apt-get update
I found real machine with Ubuntu 14.04 LTS.
It is needed to load i2c-dev
kernel module:
sudo modprobe i2c-dev
Then launch sudo ddccontrol -p
from terminal or gddccontrol
from menu.
edited Feb 28 at 7:50
answered Feb 25 at 10:23
N0rbert
16.4k33377
16.4k33377
This installs ddccontrol, but when I go to gddccontrol there is an error: No monitor supporting DDC/CI available. If your graphics card need it, please check all the required kernel modules are loaded (i2c-dev, and your framebuffer driver). I know the monitor I'm using worked with ClickMonitorDDC in windows.
â Josh Allison
Feb 27 at 1:58
I think that main part of question is solved - we got ddccontrol installing on trusty. I tested this method on VirtualBox, so it uses 'virtual monitor'. I have never used DDC in modern Ubuntus. You can try to launch it from Xenial LiveCD/USB and compare results. Also you can try to check i2c availability withsudo get-edid | parse-edid
(both commands are available fromread-edid
package).
â N0rbert
Feb 27 at 20:21
1
I'm not sure what the output means. It says DDC1 not supported in transfers but DDC2 is. EDID is successful as well as VBE interface. At the end it says "Looks like VBE was susccessful."
â Josh Allison
Feb 27 at 23:29
Just tested on real 14.04 LTS -sudo modprobe i2c-dev
is needed before launchingddccontrol
.
â N0rbert
Feb 28 at 7:51
I tried this on two computers (one kubuntu and another ddc program in windows 7) with three different montiors. Two work with the windows program but not with this setup. I know they should work because the third monitor does not support DDC. After loading i2c-dev I am now getting the error "The current monitor is in the database but does not support DDCC/CI." along with something about trying a different port on the monitor. One of the monitors has a DVI and VGA and the other only has one VGA. I don't know if ddccontroll would work on the DVI because I can't connect it to my PC. Any ideas?
â Josh Allison
Mar 1 at 1:26
 |Â
show 1 more comment
This installs ddccontrol, but when I go to gddccontrol there is an error: No monitor supporting DDC/CI available. If your graphics card need it, please check all the required kernel modules are loaded (i2c-dev, and your framebuffer driver). I know the monitor I'm using worked with ClickMonitorDDC in windows.
â Josh Allison
Feb 27 at 1:58
I think that main part of question is solved - we got ddccontrol installing on trusty. I tested this method on VirtualBox, so it uses 'virtual monitor'. I have never used DDC in modern Ubuntus. You can try to launch it from Xenial LiveCD/USB and compare results. Also you can try to check i2c availability withsudo get-edid | parse-edid
(both commands are available fromread-edid
package).
â N0rbert
Feb 27 at 20:21
1
I'm not sure what the output means. It says DDC1 not supported in transfers but DDC2 is. EDID is successful as well as VBE interface. At the end it says "Looks like VBE was susccessful."
â Josh Allison
Feb 27 at 23:29
Just tested on real 14.04 LTS -sudo modprobe i2c-dev
is needed before launchingddccontrol
.
â N0rbert
Feb 28 at 7:51
I tried this on two computers (one kubuntu and another ddc program in windows 7) with three different montiors. Two work with the windows program but not with this setup. I know they should work because the third monitor does not support DDC. After loading i2c-dev I am now getting the error "The current monitor is in the database but does not support DDCC/CI." along with something about trying a different port on the monitor. One of the monitors has a DVI and VGA and the other only has one VGA. I don't know if ddccontroll would work on the DVI because I can't connect it to my PC. Any ideas?
â Josh Allison
Mar 1 at 1:26
This installs ddccontrol, but when I go to gddccontrol there is an error: No monitor supporting DDC/CI available. If your graphics card need it, please check all the required kernel modules are loaded (i2c-dev, and your framebuffer driver). I know the monitor I'm using worked with ClickMonitorDDC in windows.
â Josh Allison
Feb 27 at 1:58
This installs ddccontrol, but when I go to gddccontrol there is an error: No monitor supporting DDC/CI available. If your graphics card need it, please check all the required kernel modules are loaded (i2c-dev, and your framebuffer driver). I know the monitor I'm using worked with ClickMonitorDDC in windows.
â Josh Allison
Feb 27 at 1:58
I think that main part of question is solved - we got ddccontrol installing on trusty. I tested this method on VirtualBox, so it uses 'virtual monitor'. I have never used DDC in modern Ubuntus. You can try to launch it from Xenial LiveCD/USB and compare results. Also you can try to check i2c availability with
sudo get-edid | parse-edid
(both commands are available from read-edid
package).â N0rbert
Feb 27 at 20:21
I think that main part of question is solved - we got ddccontrol installing on trusty. I tested this method on VirtualBox, so it uses 'virtual monitor'. I have never used DDC in modern Ubuntus. You can try to launch it from Xenial LiveCD/USB and compare results. Also you can try to check i2c availability with
sudo get-edid | parse-edid
(both commands are available from read-edid
package).â N0rbert
Feb 27 at 20:21
1
1
I'm not sure what the output means. It says DDC1 not supported in transfers but DDC2 is. EDID is successful as well as VBE interface. At the end it says "Looks like VBE was susccessful."
â Josh Allison
Feb 27 at 23:29
I'm not sure what the output means. It says DDC1 not supported in transfers but DDC2 is. EDID is successful as well as VBE interface. At the end it says "Looks like VBE was susccessful."
â Josh Allison
Feb 27 at 23:29
Just tested on real 14.04 LTS -
sudo modprobe i2c-dev
is needed before launching ddccontrol
.â N0rbert
Feb 28 at 7:51
Just tested on real 14.04 LTS -
sudo modprobe i2c-dev
is needed before launching ddccontrol
.â N0rbert
Feb 28 at 7:51
I tried this on two computers (one kubuntu and another ddc program in windows 7) with three different montiors. Two work with the windows program but not with this setup. I know they should work because the third monitor does not support DDC. After loading i2c-dev I am now getting the error "The current monitor is in the database but does not support DDCC/CI." along with something about trying a different port on the monitor. One of the monitors has a DVI and VGA and the other only has one VGA. I don't know if ddccontroll would work on the DVI because I can't connect it to my PC. Any ideas?
â Josh Allison
Mar 1 at 1:26
I tried this on two computers (one kubuntu and another ddc program in windows 7) with three different montiors. Two work with the windows program but not with this setup. I know they should work because the third monitor does not support DDC. After loading i2c-dev I am now getting the error "The current monitor is in the database but does not support DDCC/CI." along with something about trying a different port on the monitor. One of the monitors has a DVI and VGA and the other only has one VGA. I don't know if ddccontroll would work on the DVI because I can't connect it to my PC. Any ideas?
â Josh Allison
Mar 1 at 1:26
 |Â
show 1 more comment
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1009422%2ftrouble-installing-ddccontrol%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password