neorails-view_fu 0.7 → 0.8
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.
- data/lib/javascripter/helper.rb +1 -1
- data/lib/styler/helper.rb +1 -1
- data/view_fu.gemspec +1 -1
- metadata +1 -1
data/lib/javascripter/helper.rb
CHANGED
|
@@ -12,7 +12,7 @@ module Javascripter
|
|
|
12
12
|
def javascripts(options={})
|
|
13
13
|
[
|
|
14
14
|
# include the default sources (minus application.js)
|
|
15
|
-
javascript(ActionView::Helpers::AssetTagHelper
|
|
15
|
+
javascript(ActionView::Helpers::AssetTagHelper::JAVASCRIPT_DEFAULT_SOURCES),
|
|
16
16
|
|
|
17
17
|
# include the dynamic page javascripts
|
|
18
18
|
page_javascripts(options),
|
data/lib/styler/helper.rb
CHANGED
|
@@ -8,7 +8,7 @@ module Styler
|
|
|
8
8
|
|
|
9
9
|
# override this in your application_helper to clean it up
|
|
10
10
|
def stylesheets(options = {})
|
|
11
|
-
[stylesheet(
|
|
11
|
+
[stylesheet("application"), page_stylesheets(options)].join("\n")
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
# returns an entire directory of stylesheets recursively
|
data/view_fu.gemspec
CHANGED