Merge branch 'MDL-43641-26' of git://github.com/andrewnicols/moodle into MOODLE_26_STABLE

This commit is contained in:
Sam Hemelryk
2014-02-10 11:50:34 +13:00
4 changed files with 16 additions and 4 deletions
@@ -72,7 +72,11 @@ DIALOGUE = function(c) {
config.srcNode = '#'+id;
config.render = (typeof config.render !== 'undefined') ? config.render : true;
config.width = config.width || '400px';
config.center = config.centered && true;
if (typeof config.center === 'undefined') {
config.center = true;
} else {
config.center = config.centered && true;
}
config.centered = false;
config.COUNT = COUNT;
File diff suppressed because one or more lines are too long
@@ -72,7 +72,11 @@ DIALOGUE = function(c) {
config.srcNode = '#'+id;
config.render = (typeof config.render !== 'undefined') ? config.render : true;
config.width = config.width || '400px';
config.center = config.centered && true;
if (typeof config.center === 'undefined') {
config.center = true;
} else {
config.center = config.centered && true;
}
config.centered = false;
config.COUNT = COUNT;
+5 -1
View File
@@ -41,7 +41,11 @@ DIALOGUE = function(c) {
config.srcNode = '#'+id;
config.render = (typeof config.render !== 'undefined') ? config.render : true;
config.width = config.width || '400px';
config.center = config.centered && true;
if (typeof config.center === 'undefined') {
config.center = true;
} else {
config.center = config.centered && true;
}
config.centered = false;
config.COUNT = COUNT;