/openshift/adei

To get this branch, use:
bzr branch http://darksoft.org/webbzr/openshift/adei

« back to all changes in this revision

Viewing changes to js/popup.js

  • Committer: Suren A. Chilingaryan
  • Date: 2012-11-08 23:44:29 UTC
  • Revision ID: csa@dside.dyndns.org-20121108234429-jx24pcd77svhtjjs
Resizing of sidebar popups

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
 }
306
306
}
307
307
 
 
308
POPUP.prototype.RunCallbacks = function() {
 
309
 with (this) {
 
310
    for (var i = 0; i < popup_callback.length; i++) {
 
311
        var cb = popup_callback[i];
 
312
        cb.cb(cb.cbattr);
 
313
    }
 
314
 }
 
315
}
 
316
 
308
317
POPUP.prototype.UpdateGlobalGeometry = function(height, vend) {
309
318
    if (!this.super_popup) return;
310
319