File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ class VersionHelper {
5
5
//region Fields
6
6
7
7
private static _target : string = 'http://yimello.adriencadet.com/version' ;
8
- private static _version : string = '0.2.0 ' ;
8
+ private static _version : string = '0.2.2 ' ;
9
9
10
10
//endregion Fields
11
11
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ class BookmarkList {
111
111
if ( TSObject . exists ( this . _keyboardEventObj ) ) {
112
112
if ( this . _keyboardEventObj . getWhich ( ) === 17
113
113
|| this . _keyboardEventObj . isMetaKey ( ) ) {
114
+ this . _keyboardEventObj = null ;
114
115
BookmarkDAO . find (
115
116
e . getData ( 'id' ) ,
116
117
( outcome ) => {
@@ -241,6 +242,10 @@ class BookmarkList {
241
242
) ;
242
243
}
243
244
245
+ unfocus ( ) : void {
246
+ this . _keyboardEventObj = null ;
247
+ }
248
+
244
249
//endregion Public Methods
245
250
246
251
//endregion Methods
Original file line number Diff line number Diff line change @@ -183,6 +183,10 @@ class MainPresenter
183
183
this . _tagList . resetList ( ( ) => this . _tagList . selectMostPopular ( ) ) ;
184
184
this . _bookmarkList . displayMostPopular ( ) ;
185
185
}
186
+
187
+ onPause ( ) : void {
188
+ this . _bookmarkList . unfocus ( ) ;
189
+ }
186
190
187
191
//region IBookmarkFormSubscriber
188
192
You can’t perform that action at this time.
0 commit comments