RubyApp 0.6.41 → 0.6.42

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.
@@ -43,7 +43,7 @@ module RubyApp
43
43
  @list.items += [ item ]
44
44
 
45
45
  @list.searched do |element, event|
46
- # RubyApp::Elements::Mobile::Dialog.show(event, RubyApp::Elements::Mobile::Dialogs::AcknowledgementDialog.new('List', "You input #{event.value}."))
46
+ RubyApp::Elements::Mobile::Dialog.show(event, RubyApp::Elements::Mobile::Dialogs::AcknowledgementDialog.new('List', "You input #{event.value}."))
47
47
  event.update_element(@list)
48
48
  end
49
49
  @list.item_clicked do |element, event|
@@ -1,7 +1,7 @@
1
1
  :plain
2
2
  // #{__FILE__}
3
3
  $(document).on('pageinit', function() {
4
- $('ul.list').listview('option', 'filterCallback', function() {});
4
+ $('ul.list').listview('option', 'filterCallback', function() { return false; });
5
5
  $('form.ui-listview-filter input').each( function() {
6
6
  $(this).val($(this).parents('form.ui-listview-filter').next('ul.list').attr('data-search-value'));
7
7
  });
@@ -1,4 +1,4 @@
1
1
  module RubyApp
2
- VERSION = "0.6.41"
2
+ VERSION = "0.6.42"
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: 85
4
+ hash: 83
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 41
10
- version: 0.6.41
9
+ - 42
10
+ version: 0.6.42
11
11
  platform: ruby
12
12
  authors:
13
13
  - Frank G. Ficnar