Skip to content

Commit

Permalink
Loose focus after move and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dthies committed Aug 10, 2014
1 parent beba2fe commit bfe078d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
defined('MOODLE_INTERNAL') || die();

// The current plugin version (Date: YYYYMMDDXX).
$plugin->version = 2014071200;
$plugin->version = 2014081000;
// Required Moodle version.
$plugin->requires = 2012050100;
// Full name of the plugin (used for diagnostics).
$plugin->component = 'tinymce_mathslate';
$plugin->maturity = MATURITY_RC;
$plugin->release = '1.0RC1';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '1.0';
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ NS.MathJaxEditor=function(id){
// return;
//}
e.stopPropagation();
//se.insertSnippet(selectedNode.getAttribute('id'), se.removeSnippet(node.getAttribute('id')));
se.insertSnippet(node.getAttribute('id'), se.removeSnippet(selectedNode.getAttribute('id')));
se.select();
render();
};
node.on('click',function(e) {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ NS.MathJaxEditor=function(id){
// return;
//}
e.stopPropagation();
//se.insertSnippet(selectedNode.getAttribute('id'), se.removeSnippet(node.getAttribute('id')));
se.insertSnippet(node.getAttribute('id'), se.removeSnippet(selectedNode.getAttribute('id')));
se.select();
render();
};
node.on('click',function(e) {
Expand Down
2 changes: 1 addition & 1 deletion yui/src/mathjaxeditor/js/mathjaxeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ NS.MathJaxEditor=function(id){
// return;
//}
e.stopPropagation();
//se.insertSnippet(selectedNode.getAttribute('id'), se.removeSnippet(node.getAttribute('id')));
se.insertSnippet(node.getAttribute('id'), se.removeSnippet(selectedNode.getAttribute('id')));
se.select();
render();
};
node.on('click',function(e) {
Expand Down

0 comments on commit bfe078d

Please sign in to comment.