c80_order_form 0.1.0.9 → 0.1.0.10

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 147459461ed66c8ab2eeb0896f76d4e199d8cbd5
4
- data.tar.gz: 268b385d5d799698a76f75e6de6437f9a64529f7
3
+ metadata.gz: 6841168ef16b3a9e70d3863b85a4117447ebd423
4
+ data.tar.gz: 79513d72b86bf09d3c563f2c35383bdfa9881ad6
5
5
  SHA512:
6
- metadata.gz: d9695e3ede7dd9abb369dca24a1651e1d4c56e343b288f933405a3da5d608cd1fe37a50d13515fa0cd37ef1f30953a9f5a94426ac2791aaea6a51dfa8d09a852
7
- data.tar.gz: aea8ddbbed20eddf589a82dd6ee8bcd542b12b6bf46f4cb0a156cf2c52cee422fc8da0dca7d30c1d1d6f153d32a2b5e2f81a558a7720bc45a3f432c5eef3b54b
6
+ metadata.gz: bd234681f4d10d30f81a845bd75b413b3dfdb71712baeda685de3dea9651d819bcb61eb30d18ae0180fc68d10e47027e6adf6b9aad81c8d20023282c750bd017
7
+ data.tar.gz: 5c5de5212763d4e731e92e6e2d61ad708d152cb9b3886a37385c69d87cd724bca60c3c5d3d5db1f6c45ee98a13889ce4989ffeedf455c9ed3b5b9436345c7497
data/README.md CHANGED
@@ -42,6 +42,7 @@ gem 'c80_modal_forms'
42
42
  You will need to add these lines into your `application.js`:
43
43
 
44
44
  //= require bootstrap/modal
45
+ //= require bootstrap/transitions
45
46
  //= require c80_modals_form
46
47
  //= require c80_order_form
47
48
 
@@ -59,6 +60,8 @@ Add this line into `routes.rb`:
59
60
 
60
61
  mount C80OrderForm::Engine => '/'
61
62
 
63
+ Form invoked by link with class `c80_order_invoking_btn`.
64
+
62
65
  ## Development
63
66
 
64
67
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -67,7 +70,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
67
70
 
68
71
  ## Contributing
69
72
 
70
- 1. Fork it ( https://github.com/[my-github-username]/c80_order_form/fork )
73
+ 1. Fork it ( https://github.com/c080609a/c80_order_form/fork )
71
74
  2. Create your feature branch (`git checkout -b my-new-feature`)
72
75
  3. Commit your changes (`git commit -am 'Add some feature'`)
73
76
  4. Push to the branch (`git push origin my-new-feature`)
@@ -121,6 +121,11 @@ $(function () {
121
121
  loading.hide();
122
122
  },1000);
123
123
 
124
+ console.log("<this.afterShowForm>" + this.afterShowForm);
125
+ if (this.afterShowForm) {
126
+ setTimeout(this.afterShowForm,200);
127
+ }
128
+
124
129
  };
125
130
 
126
131
  var fHideForm = function () {
@@ -1,6 +1,6 @@
1
1
  body.admin_message_orders {
2
2
  // прячем кнопку batch actions
3
- .table_tools { display: none; }
3
+ //.table_tools { display: none; }
4
4
  // прячем кнопку "создать новую запись"
5
5
  div.action_items { display: none; }
6
6
  //прячем ссылку "редактировать"
@@ -0,0 +1,12 @@
1
+ class ChangeC80OrderFormMessageSubjIdType < ActiveRecord::Migration
2
+ def self.up
3
+ change_table :c80_order_form_message_orders do |t|
4
+ t.change :subj_id, :string
5
+ end
6
+ end
7
+ def self.down
8
+ change_table :c80_order_form_message_orders do |t|
9
+ t.change :subj_id, :integer
10
+ end
11
+ end
12
+ end
@@ -1,3 +1,3 @@
1
1
  module C80OrderForm
2
- VERSION = "0.1.0.9"
2
+ VERSION = "0.1.0.10"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: c80_order_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.9
4
+ version: 0.1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - C80609A
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-12-29 00:00:00.000000000 Z
11
+ date: 2016-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -96,6 +96,7 @@ files:
96
96
  - db/migrate/20151229144545_add_subj_id_to_c80_order_form_message_orders.rb
97
97
  - db/migrate/20151229234343_create_c80_order_form_settings.rb
98
98
  - db/migrate/20151230023030_change_c80_order_form_message_order_comment.rb
99
+ - db/migrate/20160609210000_change_c80_order_form_message_subj_id_type.rb
99
100
  - lib/c80_order_form.rb
100
101
  - lib/c80_order_form/engine.rb
101
102
  - lib/c80_order_form/version.rb