/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/adei.js

  • Committer: Suren A. Chilingaryan
  • Date: 2011-01-26 02:48:39 UTC
  • mto: This revision was merged to the branch mainline in revision 212.
  • Revision ID: csa@dside.dyndns.org-20110126024839-nv6qp2ie9stmd2dn
Support of Appled devices by Toni Pirhonen

Show diffs side-by-side

added added

removed removed

Lines of Context:
262
262
    this.module.Open(mod);
263
263
}
264
264
 
 
265
ADEI.prototype.Next = function() {
 
266
  var mod = this.module.setNext();
 
267
  if(mod) this.module.Open(mod);
 
268
}
 
269
ADEI.prototype.Previous = function() {
 
270
  var mod = this.module.setPrevious();
 
271
  if(mod) {
 
272
    this.module.Open(mod);       
 
273
  }
 
274
}
 
275
ADEI.prototype.UpdateButtons = function(){
 
276
  var btns = this.module.getBtnValues();
 
277
  if(btns) return btns;
 
278
  else return 'null';
 
279
}
 
280
 
265
281
ADEI.prototype.SwitchPopup = function(mod) {
266
282
    if (this.popup) this.popup.Switch(mod);
267
283
}