Skip to content

Commit

Permalink
Fix for issue in Chrome when using the link modal window and trying t…
Browse files Browse the repository at this point in the history
…o select a page from the dropdown
  • Loading branch information
David McReynolds committed Jul 2, 2014
1 parent 185f15f commit 19e7a45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuel/modules/fuel/assets/js/fuel/controller/PageController.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ fuel.controller.PageController = jqx.createController(fuel.controller.BaseFuelCo
select : function(){
$urlSelect = $('#url_select');
this._initFormTabs();
$('#input').bind('click focus', function(){
$('#input').bind('focus', function(){
$(this).removeAttr('disabled');
$('#url_select').attr('disabled', 'disabled');

Expand All @@ -146,7 +146,7 @@ fuel.controller.PageController = jqx.createController(fuel.controller.BaseFuelCo
})


$('#url_select').bind('click focus', function(){
$('#url_select').bind('focus', function(){
$(this).removeAttr('disabled');
$('#input').attr('disabled', 'disabled');
})
Expand Down

0 comments on commit 19e7a45

Please sign in to comment.