RubyApp 0.5.63 → 0.5.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- RubyApp (0.5.63)
4
+ RubyApp (0.5.64)
5
5
  BlueCloth
6
6
  chronic
7
7
  chronic_duration
@@ -1,6 +1,6 @@
1
1
  :sass
2
2
  /* #{__FILE__}
3
- div.ui-overlay
3
+ div.overlay
4
4
  display: none
5
5
  height: 100%
6
6
  left: 0px
@@ -25,4 +25,4 @@
25
25
  %body
26
26
  - self.pages.reverse.each do |page|
27
27
  = page.render(:html)
28
- %div.ui-overlay
28
+ %div.overlay
@@ -26,7 +26,7 @@
26
26
  this.showWait = function() {
27
27
  if ( RubyApp.waitCount == 0 )
28
28
  {
29
- $('div.ui-overlay').css('display', 'block');
29
+ $('div.overlay').css('display', 'block');
30
30
  $.mobile.showPageLoadingMsg();
31
31
  }
32
32
  RubyApp.waitCount++;
@@ -37,7 +37,7 @@
37
37
  if ( RubyApp.waitCount == 0 )
38
38
  {
39
39
  $.mobile.hidePageLoadingMsg();
40
- $('div.ui-overlay').css('display', 'none');
40
+ $('div.overlay').css('display', 'none');
41
41
  }
42
42
  },
43
43
  this.sendEvent = function(event) {
@@ -1,4 +1,4 @@
1
1
  module RubyApp
2
- VERSION = "0.5.63"
2
+ VERSION = "0.5.64"
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: 117
4
+ hash: 139
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 63
10
- version: 0.5.63
9
+ - 64
10
+ version: 0.5.64
11
11
  platform: ruby
12
12
  authors:
13
13
  - Frank G. Ficnar