Browse Source

Remove error message for when popup cant find a position, its not really an error

1.0
jlukic 10 years ago
parent
commit
6576f0d59c
1 changed files with 2 additions and 3 deletions
  1. 5
      src/definitions/modules/popup.js

5
src/definitions/modules/popup.js

@ -628,7 +628,7 @@ $.fn.popup = function(parameters) {
;
}
else {
module.error(error.recursion, element);
module.debug('Popup could not find a position onstage', $popup);
searchDepth = 0;
module.reset();
$popup.removeClass(className.loading);
@ -965,8 +965,7 @@ $.fn.popup.settings = {
error: {
invalidPosition : 'The position you specified is not a valid position',
method : 'The method you called is not defined.',
recursion : 'Popup attempted to reposition element to fit, but could not find an adequate position.'
method : 'The method you called is not defined.'
},
metadata: {

Loading…
Cancel
Save