RubyApp 0.5.50 → 0.5.51

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- RubyApp (0.5.50)
4
+ RubyApp (0.5.51)
5
5
  BlueCloth
6
6
  chronic
7
7
  chronic_duration
@@ -9,7 +9,8 @@
9
9
  this.hideWait = function() {
10
10
  if ( RubyApp.waitCount == 1 )
11
11
  $.mobile.hidePageLoadingMsg();
12
- RubyApp.waitCount--;
12
+ if ( RubyApp.waitCount > 0 )
13
+ RubyApp.waitCount--;
13
14
  },
14
15
  this.sendEvent = function(event) {
15
16
  // RubyApp.log('ENQUEUE event.class=' + event._class);
@@ -17,7 +18,7 @@
17
18
  event.session = RubyApp.getData('session', null);
18
19
  $(window).queue( function() {
19
20
  RubyApp.log('DEQUEUE event.class=' + event._class);
20
- RubyApp.hideWait();
21
+ RubyApp.showWait();
21
22
  request = $.ajax({type:'POST', url:location.href, data:event});
22
23
  request
23
24
  .success( function(event) {
@@ -1,4 +1,4 @@
1
1
  module RubyApp
2
- VERSION = "0.5.50"
2
+ VERSION = "0.5.51"
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: 111
4
+ hash: 109
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 50
10
- version: 0.5.50
9
+ - 51
10
+ version: 0.5.51
11
11
  platform: ruby
12
12
  authors:
13
13
  - Frank G. Ficnar