diff options
author | Trent Richardson <trentdrichardson@gmail.com> | 2013-07-26 08:04:13 -0400 |
---|---|---|
committer | Trent Richardson <trentdrichardson@gmail.com> | 2013-07-26 08:04:13 -0400 |
commit | aeff218c778541110c6bd40888803370dcd9cc50 (patch) | |
tree | 675df376f2294284c7f716f587be6ce15214cbc2 /jquery-impromptu.js | |
parent | 114f74f70645bf67a5e09918d026f11817d95119 (diff) | |
download | jQuery-Impromptu-aeff218c778541110c6bd40888803370dcd9cc50.zip jQuery-Impromptu-aeff218c778541110c6bd40888803370dcd9cc50.tar.gz jQuery-Impromptu-aeff218c778541110c6bd40888803370dcd9cc50.tar.bz2 |
Apply Pull #15 - Fixes window unbind resize event
Diffstat (limited to 'jquery-impromptu.js')
-rw-r--r-- | jquery-impromptu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery-impromptu.js b/jquery-impromptu.js index 95f8c24..9e11f3c 100644 --- a/jquery-impromptu.js +++ b/jquery-impromptu.js @@ -637,7 +637,7 @@ }
$.prompt.jqib.remove();
- $('window').off('resize',$.prompt.position);
+ $(window).off('resize',$.prompt.position);
});
};
|