diff options
author | Trent Richardson <trentdrichardson@gmail.com> | 2015-03-12 08:55:05 -0400 |
---|---|---|
committer | Trent Richardson <trentdrichardson@gmail.com> | 2015-03-12 08:55:05 -0400 |
commit | 832249a4a6d4c68b05e440f29fe4897eeeb365f1 (patch) | |
tree | 5c8cda2f99e060779fbc4f36a156607a9335216a /src | |
parent | d83b2d6f53aca9ca813e6c0cff9bd9662f5abde4 (diff) | |
download | jQuery-Impromptu-832249a4a6d4c68b05e440f29fe4897eeeb365f1.zip jQuery-Impromptu-832249a4a6d4c68b05e440f29fe4897eeeb365f1.tar.gz jQuery-Impromptu-832249a4a6d4c68b05e440f29fe4897eeeb365f1.tar.bz2 |
Fix issue with buttons not enabling back
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery-impromptu.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jquery-impromptu.js b/src/jquery-impromptu.js index 469af3f..e1c0708 100644 --- a/src/jquery-impromptu.js +++ b/src/jquery-impromptu.js @@ -782,7 +782,8 @@ $state.slideDown(jqiopts.promptspeed,function(){
var $t = $(this);
-
+ t.enableStateButtons();
+
// if focus is a selector, find it, else its button index
if(typeof(stateobj.focus) === 'string'){
$t.find(stateobj.focus).eq(0).focus();
|