forked from openfarmcc/OpenFarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openfarmcc#313 from rickcarlino/search-with-get
Search with get (for Ganalytics, shareable URLS)
- Loading branch information
Showing
8 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
app/controllers/home_controller.rb → app/controllers/homes_controller.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
<!-- For Chrome for Android: --> | ||
<link rel="icon" sizes="192x192" href="touch-icon-192x192.png"> | ||
<link rel="icon" sizes="192x192" href=" <%= image_path("touch-icon-192x192.png") %>> | ||
<!-- For iPhone 6 Plus with @3× display: --> | ||
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="icons/apple-touch-icon-180x180-precomposed.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="180x180" href=" <%= image_path("apple-touch-icon-180x180-precomposed.png") %>> | ||
<!-- For iPad with @2× display running iOS ≥ 7: --> | ||
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152-precomposed.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="152x152" href=" <%= image_path("apple-touch-icon-152x152-precomposed.png") %>> | ||
<!-- For iPad with @2× display running iOS ≤ 6: --> | ||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144-precomposed.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href=" <%= image_path("apple-touch-icon-144x144-precomposed.png") %>> | ||
<!-- For iPhone with @2× display running iOS ≥ 7: --> | ||
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120-precomposed.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="120x120" href=" <%= image_path("apple-touch-icon-120x120-precomposed.png") %>> | ||
<!-- For iPhone with @2× display running iOS ≤ 6: --> | ||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114-precomposed.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href=" <%= image_path("apple-touch-icon-114x114-precomposed.png") %>> | ||
<!-- For the iPad mini and the first- and second-generation iPad (@1× display) on iOS ≥ 7: --> | ||
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76-precomposed.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="76x76" href=" <%= image_path("apple-touch-icon-76x76-precomposed.png") %>> | ||
<!-- For the iPad mini and the first- and second-generation iPad (@1× display) on iOS ≤ 6: --> | ||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72-precomposed.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href=" <%= image_path("apple-touch-icon-72x72-precomposed.png") %>> | ||
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: --> | ||
<link rel="apple-touch-icon-precomposed" href="icons/apple-touch-icon-precomposed.png"><!-- 57×57px --> | ||
<link rel="apple-touch-icon-precomposed" href="<%= image_path("apple-touch-icon-precomposed.png") %> ><!-- 57×57px --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters