Skip to content

Commit

Permalink
removed a stray console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean McArthur committed Oct 15, 2009
1 parent 26cf702 commit cd28537
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -40,7 +40,7 @@ Uses [Fx.Elements](http://mootools.net/more#Fx.Elements) from MooTools More.
Options
-------

### Version 1.0
### Version 1.1
* **slideInterval**: (*int*) Time in milliseconds to remain on each slide. Default: 5 seconds.
* **transitionDuration**: (*int*) Time in milliseconds for the transition effect to take. Default: 1 second.
* **startIndex**: (*int*) A zero-based number for which Tab should be displayed first. Default: 0 (first Tab).
Expand Down
4 changes: 1 addition & 3 deletions Source/rotater.js
Expand Up @@ -59,15 +59,13 @@ MGFX.Rotater = new Class({
}.bind(this));

this.slides.addEvent('mouseleave', function() {
console.log(_timeLastPause - _timeLastRotate);
var timePassed = (_timeLastPause - _timeLastRotate);
_timeLastRotate = new Date() - timePassed;
_resumeDelay = (function() {
this.autoplay();
this.rotate();
this.fireEvent('onResume');
}).delay(_timeTillRotate - timePassed, this);

}).delay(_timeTillRotate - timePassed, this);
}.bind(this));
}.protect(),

Expand Down
2 changes: 1 addition & 1 deletion package.yml
@@ -1,7 +1,7 @@
name: MGFX.Tabs
author: seanmonstar
category: Interface
tags: [tabs]
#tags: [tabs]
#docs: http://url_to_docs
demo: http://seanmonstar.github.com/MGFX.Tabs/
# requires:
Expand Down

0 comments on commit cd28537

Please sign in to comment.