RubyApp 0.5.59 → 0.5.60

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- RubyApp (0.5.59)
4
+ RubyApp (0.5.60)
5
5
  BlueCloth
6
6
  chronic
7
7
  chronic_duration
@@ -2,11 +2,13 @@
2
2
  // #{__FILE__}
3
3
  var RubyApp = new function() {
4
4
  this.enQueue = function(f) {
5
- queue = $(window).queue('event');
6
- if ( queue.length > 0 )
5
+ if ( $(window).queue('event').length == 0 )
6
+ {
7
7
  $(window).queue('event', f);
8
+ $(window).dequeue('event');
9
+ }
8
10
  else
9
- f();
11
+ $(window).queue('event', f);
10
12
  },
11
13
  this.deQueue = function() {
12
14
  $(window).dequeue('event');
@@ -1,4 +1,4 @@
1
1
  module RubyApp
2
- VERSION = "0.5.59"
2
+ VERSION = "0.5.60"
3
3
  ROOT = File.expand_path(File.dirname(__FILE__))
4
4
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RubyApp
3
3
  version: !ruby/object:Gem::Version
4
- hash: 125
4
+ hash: 115
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 59
10
- version: 0.5.59
9
+ - 60
10
+ version: 0.5.60
11
11
  platform: ruby
12
12
  authors:
13
13
  - Frank G. Ficnar