active_scaffold 3.4.29 → 3.4.30
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +4 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_flat_10_000000_40x100.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-icons_222222_256x240.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-icons_228ef1_256x240.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-icons_ef8c08_256x240.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-icons_ffd27a_256x240.png +0 -0
- data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/javascripts/active_scaffold.js.erb +39 -32
- data/app/assets/stylesheets/active_scaffold_layout.css +1 -7
- data/app/views/active_scaffold_overrides/_list_header.html.erb +1 -1
- data/lib/active_scaffold/actions/update.rb +1 -1
- data/lib/active_scaffold/responds_to_parent.rb +2 -1
- data/lib/active_scaffold/version.rb +1 -1
- data/vendor/assets/javascripts/jquery.visible.min.js +1 -0
- data/vendor/assets/stylesheets/jquery-ui-theme.css.erb +34 -17
- metadata +17 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e5dcb6120b7892389220769c34d3ab10bbd0683
|
4
|
+
data.tar.gz: 65f2ff944aea908bfcd9f436ac1e1c33def2e163
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31fe13541a4da8ec38c3d2e682c098a4f591c9f62f9ba2b22698cf51b6f262cde69c75520e9e99b9f196bd7dbafa4fddc1e3d62c6872e37c604d409663f04d91
|
7
|
+
data.tar.gz: 94bc7c51e32e0b0e35e58a7d40573092c2d693010a3d072492290ae6adfbfa342d385f765ce3ab4769cddc22e36e0d4f69967107491f6aefac4d067f43e6e3bd
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
- move jquery-ui images to app/assets for rails 4.2 compatibility
|
2
|
+
- clean css so no need to reverse links on nested
|
3
|
+
- fix responds_to_parent with redirect
|
4
|
+
|
1
5
|
= 3.4.29
|
2
6
|
- fix for search_ui :multi_select on non-association column and non integer options
|
3
7
|
- ensure id for radio button is valid
|
data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_diagonals-thick_18_b81900_40x40.png
RENAMED
File without changes
|
data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_diagonals-thick_20_666666_40x40.png
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_gloss-wave_35_f6a828_500x100.png
RENAMED
File without changes
|
data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_highlight-soft_100_eeeeee_1x100.png
RENAMED
File without changes
|
data/{vendor/assets/images → app/assets/images/jquery-ui}/ui-bg_highlight-soft_75_ffe45c_1x100.png
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,33 +1,40 @@
|
|
1
|
-
<%
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
1
|
+
<%
|
2
|
+
case ActiveScaffold.js_framework
|
3
|
+
when :jquery
|
4
|
+
jquery_ui = true
|
5
|
+
require_asset "getprototypeof"
|
6
|
+
if Jquery::Rails.const_defined? 'JQUERY_UI_VERSION'
|
7
|
+
require_asset "jquery-ui"
|
8
|
+
elsif Jquery.const_defined? 'Ui'
|
9
|
+
jquery_ui_prefix = Jquery::Ui::Rails::VERSION < '5.0.0' ? 'jquery.ui.' : 'jquery-ui/'
|
10
|
+
require_asset "#{jquery_ui_prefix}core"
|
11
|
+
require_asset "#{jquery_ui_prefix}effect"
|
12
|
+
require_asset "#{jquery_ui_prefix}sortable"
|
13
|
+
require_asset "#{jquery_ui_prefix}draggable"
|
14
|
+
require_asset "#{jquery_ui_prefix}droppable"
|
15
|
+
require_asset "#{jquery_ui_prefix}datepicker"
|
16
|
+
else
|
17
|
+
jquery_ui = false
|
18
|
+
end
|
19
|
+
if jquery_ui
|
20
|
+
require_asset "jquery-ui-timepicker-addon"
|
21
|
+
require_asset "jquery/date_picker_bridge"
|
22
|
+
require_asset "jquery/draggable_lists"
|
23
|
+
end
|
24
|
+
require_asset "jquery.visible.min"
|
25
|
+
require_asset "jquery/active_scaffold"
|
26
|
+
require_asset "jquery/jquery.editinplace"
|
27
|
+
when :prototype
|
28
|
+
require_asset "effects"
|
29
|
+
require_asset "controls"
|
30
|
+
require_asset "prototype/active_scaffold"
|
31
|
+
require_asset "prototype/dhtml_history"
|
32
|
+
require_asset "prototype/form_enhancements"
|
33
|
+
require_asset "prototype/rico_corner"
|
34
|
+
end
|
35
|
+
%>
|
31
36
|
ActiveScaffold.config = <%= ActiveScaffold.js_config.to_json %>;
|
32
|
-
<%
|
33
|
-
|
37
|
+
<%
|
38
|
+
ActiveScaffold.javascripts.each {|js| require_asset js}
|
39
|
+
ActiveScaffold::Bridges.all_javascripts.each {|js| require_asset js}
|
40
|
+
%>
|
@@ -104,12 +104,6 @@ top: 19px;
|
|
104
104
|
top: 14px;
|
105
105
|
}
|
106
106
|
|
107
|
-
.view .active-scaffold-header div.actions a,
|
108
|
-
.view .active-scaffold-header div.actions div,
|
109
|
-
.view .active-scaffold-header div.actions div.action_group {
|
110
|
-
float: left;
|
111
|
-
}
|
112
|
-
|
113
107
|
.active-scaffold-header div.actions a.disabled {
|
114
108
|
opacity: 0.5;
|
115
109
|
}
|
@@ -119,7 +113,7 @@ opacity: 0.5;
|
|
119
113
|
.active-scaffold-header div.actions a.show_search,
|
120
114
|
.active-scaffold-header div.actions a.show_config_list,
|
121
115
|
.active-scaffold-header div.actions div.action_group div {
|
122
|
-
margin:0;
|
116
|
+
margin:0;
|
123
117
|
padding: 5px 5px 5px 25px;
|
124
118
|
background-position: 5px 50%;
|
125
119
|
background-repeat: no-repeat;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<% action_links = active_scaffold_config.action_links.collection
|
2
2
|
unless action_links.empty? -%>
|
3
3
|
<div class="actions">
|
4
|
-
<%= display_action_links(action_links, nil, :skip_unauthorized => true
|
4
|
+
<%= display_action_links(action_links, nil, :skip_unauthorized => true) %>
|
5
5
|
<%= loading_indicator_tag(:action => :table) %>
|
6
6
|
</div>
|
7
7
|
<% end %>
|
@@ -142,10 +142,10 @@ module ActiveScaffold::Actions
|
|
142
142
|
column = params.delete(:column).to_sym
|
143
143
|
params.delete(:original_html)
|
144
144
|
params.delete(:original_value)
|
145
|
+
@column = active_scaffold_config.columns[column]
|
145
146
|
@record = find_if_allowed(params[:id], :read)
|
146
147
|
return unless @record.authorized_for?(:crud_type => :update, :column => column)
|
147
148
|
|
148
|
-
@column = active_scaffold_config.columns[column]
|
149
149
|
value ||=
|
150
150
|
unless @column.column.nil? || @column.column.null
|
151
151
|
@column.column.default == true ? false : @column.column.default
|
@@ -10,10 +10,11 @@ module ActiveScaffold
|
|
10
10
|
|
11
11
|
# Either pull out a redirect or the request body
|
12
12
|
script = if response.headers['Location']
|
13
|
-
"document.location.href = '#{self.class.helpers.escape_javascript
|
13
|
+
"document.location.href = '#{self.class.helpers.escape_javascript response.headers.delete('Location').to_s}'"
|
14
14
|
else
|
15
15
|
response.body || ''
|
16
16
|
end
|
17
|
+
response.status = 200 if (300...400).include? response.status
|
17
18
|
|
18
19
|
# Eval in parent scope and replace document location of this frame
|
19
20
|
# so back button doesn't replay action on targeted forms
|
@@ -0,0 +1 @@
|
|
1
|
+
(function(e){e.fn.visible=function(t,n,r){var i=e(this).eq(0),s=i.get(0),o=e(window),u=o.scrollTop(),a=u+o.height(),f=o.scrollLeft(),l=f+o.width(),c=i.offset().top,h=c+i.height(),p=i.offset().left,d=p+i.width(),v=t===true?h:c,m=t===true?c:h,g=t===true?d:p,y=t===true?p:d,b=n===true?s.offsetWidth*s.offsetHeight:true,r=r?r:"both";if(r==="both")return!!b&&m<=a&&v>=u&&y<=l&&g>=f;else if(r==="vertical")return!!b&&m<=a&&v>=u;else if(r==="horizontal")return!!b&&y<=l&&g>=f}})(jQuery)
|
@@ -1,25 +1,42 @@
|
|
1
|
+
/*
|
2
|
+
*= depend_on_asset "jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png"
|
3
|
+
*= depend_on_asset "jquery-ui/ui-bg_diagonals-thick_20_666666_40x40.png"
|
4
|
+
*= depend_on_asset "jquery-ui/ui-bg_flat_10_000000_40x100.png"
|
5
|
+
*= depend_on_asset "jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png"
|
6
|
+
*= depend_on_asset "jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png"
|
7
|
+
*= depend_on_asset "jquery-ui/ui-bg_glass_65_ffffff_1x400.png"
|
8
|
+
*= depend_on_asset "jquery-ui/ui-bg_gloss-wave_35_f6a828_500x100.png"
|
9
|
+
*= depend_on_asset "jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png"
|
10
|
+
*= depend_on_asset "jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png"
|
11
|
+
*= depend_on_asset "jquery-ui/ui-icons_222222_256x240.png"
|
12
|
+
*= depend_on_asset "jquery-ui/ui-icons_228ef1_256x240.png"
|
13
|
+
*= depend_on_asset "jquery-ui/ui-icons_ef8c08_256x240.png"
|
14
|
+
*= depend_on_asset "jquery-ui/ui-icons_ffd27a_256x240.png"
|
15
|
+
*= depend_on_asset "jquery-ui/ui-icons_ffffff_256x240.png"
|
16
|
+
*/
|
17
|
+
|
1
18
|
/* Component containers
|
2
19
|
----------------------------------*/
|
3
|
-
.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(<%= image_path('ui-bg_highlight-soft_100_eeeeee_1x100.png') %>) 50% top repeat-x; color: #333333; }
|
20
|
+
.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(<%= image_path('jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png') %>) 50% top repeat-x; color: #333333; }
|
4
21
|
.ui-widget-content a { color: #333333; }
|
5
|
-
.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(<%= image_path('ui-bg_gloss-wave_35_f6a828_500x100.png') %>) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
|
22
|
+
.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(<%= image_path('jquery-ui/ui-bg_gloss-wave_35_f6a828_500x100.png') %>) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
|
6
23
|
.ui-widget-header a { color: #ffffff; }
|
7
24
|
|
8
25
|
/* Interaction states
|
9
26
|
----------------------------------*/
|
10
|
-
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(<%= image_path('ui-bg_glass_100_f6f6f6_1x400.png') %>) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; }
|
27
|
+
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(<%= image_path('jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png') %>) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; }
|
11
28
|
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; }
|
12
|
-
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #fbcb09; background: #fdf5ce url(<%= image_path('ui-bg_glass_100_fdf5ce_1x400.png') %>) 50% 50% repeat-x; font-weight: bold; color: #c77405; }
|
29
|
+
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #fbcb09; background: #fdf5ce url(<%= image_path('jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png') %>) 50% 50% repeat-x; font-weight: bold; color: #c77405; }
|
13
30
|
.ui-state-hover a, .ui-state-hover a:hover { color: #c77405; text-decoration: none; }
|
14
|
-
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #fbd850; background: #ffffff url(<%= image_path('ui-bg_glass_65_ffffff_1x400.png') %>) 50% 50% repeat-x; font-weight: bold; color: #eb8f00; }
|
31
|
+
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #fbd850; background: #ffffff url(<%= image_path('jquery-ui/ui-bg_glass_65_ffffff_1x400.png') %>) 50% 50% repeat-x; font-weight: bold; color: #eb8f00; }
|
15
32
|
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #eb8f00; text-decoration: none; }
|
16
33
|
.ui-widget :active { outline: none; }
|
17
34
|
|
18
35
|
/* Interaction Cues
|
19
36
|
----------------------------------*/
|
20
|
-
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fed22f; background: #ffe45c url(<%= image_path('ui-bg_highlight-soft_75_ffe45c_1x100.png') %>) 50% top repeat-x; color: #363636; }
|
37
|
+
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fed22f; background: #ffe45c url(<%= image_path('jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png') %>) 50% top repeat-x; color: #363636; }
|
21
38
|
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
|
22
|
-
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(<%= image_path('ui-bg_diagonals-thick_18_b81900_40x40.png') %>) 50% 50% repeat; color: #ffffff; }
|
39
|
+
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(<%= image_path('jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png') %>) 50% 50% repeat; color: #ffffff; }
|
23
40
|
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; }
|
24
41
|
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; }
|
25
42
|
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
@@ -30,18 +47,18 @@
|
|
30
47
|
----------------------------------*/
|
31
48
|
|
32
49
|
/* states and images */
|
33
|
-
.ui-icon { background-image: url(<%= image_path('ui-icons_222222_256x240.png') %>); }
|
34
|
-
.ui-widget-content .ui-icon {background-image: url(<%= image_path('ui-icons_222222_256x240.png') %>); }
|
35
|
-
.ui-widget-header .ui-icon {background-image: url(<%= image_path('ui-icons_ffffff_256x240.png') %>); }
|
36
|
-
.ui-state-default .ui-icon { background-image: url(<%= image_path('ui-icons_ef8c08_256x240.png') %>); }
|
37
|
-
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(<%= image_path('ui-icons_ef8c08_256x240.png') %>); }
|
38
|
-
.ui-state-active .ui-icon {background-image: url(<%= image_path('ui-icons_ef8c08_256x240.png') %>); }
|
39
|
-
.ui-state-highlight .ui-icon {background-image: url(<%= image_path('ui-icons_228ef1_256x240.png') %>); }
|
40
|
-
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(<%= image_path('ui-icons_ffd27a_256x240.png') %>); }
|
50
|
+
.ui-icon { background-image: url(<%= image_path('jquery-ui/ui-icons_222222_256x240.png') %>); }
|
51
|
+
.ui-widget-content .ui-icon {background-image: url(<%= image_path('jquery-ui/ui-icons_222222_256x240.png') %>); }
|
52
|
+
.ui-widget-header .ui-icon {background-image: url(<%= image_path('jquery-ui/ui-icons_ffffff_256x240.png') %>); }
|
53
|
+
.ui-state-default .ui-icon { background-image: url(<%= image_path('jquery-ui/ui-icons_ef8c08_256x240.png') %>); }
|
54
|
+
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(<%= image_path('jquery-ui/ui-icons_ef8c08_256x240.png') %>); }
|
55
|
+
.ui-state-active .ui-icon {background-image: url(<%= image_path('jquery-ui/ui-icons_ef8c08_256x240.png') %>); }
|
56
|
+
.ui-state-highlight .ui-icon {background-image: url(<%= image_path('jquery-ui/ui-icons_228ef1_256x240.png') %>); }
|
57
|
+
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(<%= image_path('jquery-ui/ui-icons_ffd27a_256x240.png') %>); }
|
41
58
|
|
42
59
|
/* Misc visuals
|
43
60
|
----------------------------------*/
|
44
61
|
|
45
62
|
/* Overlays */
|
46
|
-
.ui-widget-overlay { background: #666666 url(<%= image_path('ui-bg_diagonals-thick_20_666666_40x40.png') %>) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }
|
47
|
-
.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(<%= image_path('ui-bg_flat_10_000000_40x100.png') %>) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
|
63
|
+
.ui-widget-overlay { background: #666666 url(<%= image_path('jquery-ui/ui-bg_diagonals-thick_20_666666_40x40.png') %>) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }
|
64
|
+
.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(<%= image_path('jquery-ui/ui-bg_flat_10_000000_40x100.png') %>) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_scaffold
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.30
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Many, see README
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: brakeman
|
@@ -111,6 +111,20 @@ files:
|
|
111
111
|
- app/assets/images/active_scaffold/indicator.gif
|
112
112
|
- app/assets/images/active_scaffold/magnifier.png
|
113
113
|
- app/assets/images/active_scaffold/refresh.png
|
114
|
+
- app/assets/images/jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png
|
115
|
+
- app/assets/images/jquery-ui/ui-bg_diagonals-thick_20_666666_40x40.png
|
116
|
+
- app/assets/images/jquery-ui/ui-bg_flat_10_000000_40x100.png
|
117
|
+
- app/assets/images/jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png
|
118
|
+
- app/assets/images/jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png
|
119
|
+
- app/assets/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png
|
120
|
+
- app/assets/images/jquery-ui/ui-bg_gloss-wave_35_f6a828_500x100.png
|
121
|
+
- app/assets/images/jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
122
|
+
- app/assets/images/jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
123
|
+
- app/assets/images/jquery-ui/ui-icons_222222_256x240.png
|
124
|
+
- app/assets/images/jquery-ui/ui-icons_228ef1_256x240.png
|
125
|
+
- app/assets/images/jquery-ui/ui-icons_ef8c08_256x240.png
|
126
|
+
- app/assets/images/jquery-ui/ui-icons_ffd27a_256x240.png
|
127
|
+
- app/assets/images/jquery-ui/ui-icons_ffffff_256x240.png
|
114
128
|
- app/assets/javascripts/active_scaffold.js.erb
|
115
129
|
- app/assets/javascripts/jquery/active_scaffold.js
|
116
130
|
- app/assets/javascripts/jquery/active_scaffold_chosen.js
|
@@ -419,22 +433,9 @@ files:
|
|
419
433
|
- test/model_stub.rb
|
420
434
|
- test/run_all.rb
|
421
435
|
- test/test_helper.rb
|
422
|
-
- vendor/assets/images/ui-bg_diagonals-thick_18_b81900_40x40.png
|
423
|
-
- vendor/assets/images/ui-bg_diagonals-thick_20_666666_40x40.png
|
424
|
-
- vendor/assets/images/ui-bg_flat_10_000000_40x100.png
|
425
|
-
- vendor/assets/images/ui-bg_glass_100_f6f6f6_1x400.png
|
426
|
-
- vendor/assets/images/ui-bg_glass_100_fdf5ce_1x400.png
|
427
|
-
- vendor/assets/images/ui-bg_glass_65_ffffff_1x400.png
|
428
|
-
- vendor/assets/images/ui-bg_gloss-wave_35_f6a828_500x100.png
|
429
|
-
- vendor/assets/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
430
|
-
- vendor/assets/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
431
|
-
- vendor/assets/images/ui-icons_222222_256x240.png
|
432
|
-
- vendor/assets/images/ui-icons_228ef1_256x240.png
|
433
|
-
- vendor/assets/images/ui-icons_ef8c08_256x240.png
|
434
|
-
- vendor/assets/images/ui-icons_ffd27a_256x240.png
|
435
|
-
- vendor/assets/images/ui-icons_ffffff_256x240.png
|
436
436
|
- vendor/assets/javascripts/getprototypeof.js
|
437
437
|
- vendor/assets/javascripts/jquery-ui-timepicker-addon.js
|
438
|
+
- vendor/assets/javascripts/jquery.visible.min.js
|
438
439
|
- vendor/assets/stylesheets/jquery-ui-theme.css.erb
|
439
440
|
- vendor/assets/stylesheets/jquery-ui.css
|
440
441
|
homepage: https://github.com/activescaffold/active_scaffold
|