When I run phpMyAdmin (latest master) I get an error in FIrebug console: window.parent.currentWidth is not a function.
It's caused by this line in functions.js:
if(window.parent.currentWidth() == 0)
Oh, this shouldn't have gotten to master. It's these few codelines at the very beginning of functions.js
if(window.parent) { $(document).ready(function() { if(window.parent.currentWidth() == 0) $('div#frameExpand').show(); });
Could you just delete those lines and commit it to master? They are not needed there.
On Fri, Aug 5, 2011 at 1:27 AM, Piotr Przybylski piotr.prz@gmail.com wrote:
When I run phpMyAdmin (latest master) I get an error in FIrebug console: window.parent.currentWidth is not a function.
It's caused by this line in functions.js:
if(window.parent.currentWidth() == 0)
-- Regards, Piotr Przybylski
BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA The must-attend event for mobile developers. Connect with experts. Get tools for creating Super Apps. See the latest technologies. Sessions, hands-on labs, demos & much more. Register early & save! http://p.sf.net/sfu/rim-blackberry-1 _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
On Fri, Aug 5, 2011 at 10:21 AM, Tyron Madlener tyronx@gmail.com wrote:
Oh, this shouldn't have gotten to master. It's these few codelines at the very beginning of functions.js
if(window.parent) { $(document).ready(function() { if(window.parent.currentWidth() == 0) $('div#frameExpand').show(); });
Could you just delete those lines and commit it to master? They are not needed there.
(It is for my collapsible navigation frame feature. But the feature is unfinished.)
On Fri, Aug 5, 2011 at 1:27 AM, Piotr Przybylski piotr.prz@gmail.com wrote:
When I run phpMyAdmin (latest master) I get an error in FIrebug console: window.parent.currentWidth is not a function.
It's caused by this line in functions.js:
if(window.parent.currentWidth() == 0)
-- Regards, Piotr Przybylski
BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA The must-attend event for mobile developers. Connect with experts. Get tools for creating Super Apps. See the latest technologies. Sessions, hands-on labs, demos & much more. Register early & save! http://p.sf.net/sfu/rim-blackberry-1 _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
Hi
Dne Fri, 5 Aug 2011 10:21:05 +0300 Tyron Madlener tyronx@gmail.com napsal(a):
Oh, this shouldn't have gotten to master. It's these few codelines at the very beginning of functions.js
if(window.parent) { $(document).ready(function() { if(window.parent.currentWidth() == 0) $('div#frameExpand').show(); });
Could you just delete those lines and commit it to master? They are not needed there.
Looks like I forgot to revert one changeset while merging your tree, done now.