@@ -120,8 +120,8 @@ function initwrapper() {
120120
121121
122122 // Public variables
123- TBUtils . toolboxVersion = '3.6.4 ' + ( ( betaRelease ) ? ' (beta)' : '' ) ;
124- TBUtils . shortVersion = 364 ; //don't forget to change this one! This is used for the 'new version' notification.
123+ TBUtils . toolboxVersion = '3.6.5 ' + ( ( betaRelease ) ? ' (beta)' : '' ) ;
124+ TBUtils . shortVersion = 365 ; //don't forget to change this one! This is used for the 'new version' notification.
125125 TBUtils . releaseName = 'Communicating Cat' ;
126126 TBUtils . configSchema = 1 ;
127127 TBUtils . notesSchema = 6 ;
@@ -356,7 +356,7 @@ function initwrapper() {
356356 debugObject . browserVersion = browserMatchedInfo [ 2 ] ;
357357 debugObject . platformInformation = browserMatchedInfo [ 1 ] ;
358358
359- } else if ( chromeRegex . test ( browserUserAgent ) ) {
359+ } else if ( chromeRegex . test ( browserUserAgent ) ) {
360360 browserMatchedInfo = browserUserAgent . match ( chromeRegex ) ;
361361 debugObject . browser = 'Chrome' ;
362362 debugObject . browserVersion = browserMatchedInfo [ 2 ] ;
@@ -993,8 +993,8 @@ function initwrapper() {
993993 return callback ( true ) ;
994994 } else {
995995 return callback ( false ) ;
996- }
997-
996+ }
997+
998998 } ) ;
999999 } ;
10001000
@@ -1054,9 +1054,9 @@ function initwrapper() {
10541054 subreddit = $body . find ( '.ThreadTitle__community' ) . text ( ) ;
10551055 permalink = ( $threadBase . find ( '.m-link' ) . length ? 'https://mod.reddit.com' + $threadBase . find ( '.m-link' ) . attr ( 'href' ) : 'https://mod.reddit.com/mail/perma/' + browserUrl . match ( idRegex ) [ 1 ] ) ;
10561056 id = browserUrl . match ( idRegex ) [ 1 ] ;
1057-
1057+
10581058 // Funny story, there is currently no functionality in new modmail that can make use of the body.
1059- // Macros look at the sidebar and other modules don't need the body.
1059+ // Macros look at the sidebar and other modules don't need the body.
10601060 // Todo: Figure out what body to present when activated from modmacro.
10611061 var $textBody = $threadBase . find ( '.Message__body .md' ) . clone ( ) ;
10621062 console . log ( $textBody ) ;
@@ -2502,4 +2502,4 @@ function initwrapper() {
25022502 var event = new CustomEvent ( "TBUtilsLoaded" ) ;
25032503 window . dispatchEvent ( event ) ;
25042504 } ) ;
2505- } ) ( ) ;
2505+ } ) ( ) ;
0 commit comments