Skip to content

Commit

Permalink
Merge pull request #246 from WildcardSearch/maintenance
Browse files Browse the repository at this point in the history
3.2.11 Release
  • Loading branch information
Mark Vincent authored Jun 22, 2019
2 parents 604e634 + 86c5969 commit 75c01a8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## MentionMe 3.2.10
## MentionMe 3.2.11

A plugin for MyBB 1.8.x that allows Twitter-style tagging and integration with [MyAlerts](https://github.com/euantorano/MyAlerts)

Expand Down
2 changes: 1 addition & 1 deletion Upload/inc/plugins/mention.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

// checked by other plugin files
define('IN_MENTIONME', true);
define('MENTIONME_VERSION', '3.2.10');
define('MENTIONME_VERSION', '3.2.11');

// register custom class autoloader
spl_autoload_register('mentionMeClassAutoLoad');
Expand Down
4 changes: 2 additions & 2 deletions Upload/jscripts/MentionMe/autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -1299,7 +1299,7 @@ var MentionMe = (function($, m) {

this.$iFrame = $("div.sceditor-toolbar").next("iframe");
this.$container = this.$iFrame.closest(".sceditor-container").parent();
this.$body = this.editor.getBody();
this.$body = $(this.editor.getBody());

this.selection = {
start: 0,
Expand Down Expand Up @@ -1360,7 +1360,7 @@ var MentionMe = (function($, m) {
}

left = pi(coords.left) + containerOffset.left + pi(this.$container.css("paddingLeft").replace("px", "")) + fontSize + 2;
top = pi(coords.top + this.$container.find("div.sceditor-toolbar").height()) + containerOffset.top + pi(this.$container.css("paddingTop").replace("px", "")) + 3;
top = pi(coords.top + this.$container.find("div.sceditor-toolbar").height()) + containerOffset.top + pi(this.$container.css("paddingTop").replace("px", "")) + 6;

this.popup.show(left, top);
}
Expand Down
Loading

0 comments on commit 75c01a8

Please sign in to comment.