Skip to content
This repository was archived by the owner on Aug 6, 2024. It is now read-only.
Open

New #15

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
853 changes: 853 additions & 0 deletions public/bootstrap.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions public/bootstrap.min.js

Large diffs are not rendered by default.

470 changes: 470 additions & 0 deletions public/jquery-ui.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions public/jquery-ui.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions public/jquery.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions views/discover.haml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
%footer
%div=haml :footer

%script{ :type => "text/javascript", :src =>"//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"}
%script{ :type => "text/javascript", :src => "//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js" }
%script{ :type => "text/javascript", :src =>"jquery.min.js"}
%script{ :type => "text/javascript", :src => "bootstrap.min.js" }
:javascript
var match = function() {
var input = $('#input').val();
Expand Down
6 changes: 3 additions & 3 deletions views/index.haml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
%footer
%div=haml :footer

%script{ :type => "text/javascript", :src =>"//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"}
%script{ :type => "text/javascript", :src => "//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js" }
%script{ :type => "text/javascript", :src => "//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js" }
%script{ :type => "text/javascript", :src =>"jquery.min.js"}
%script{ :type => "text/javascript", :src => "bootstrap.min.js" }
%script{ :type => "text/javascript", :src => "jquery-ui.min.js" }
:javascript
// function to load settings from localstorage
var loadLocalstorage = function() {
Expand Down
4 changes: 2 additions & 2 deletions views/layout.haml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<![endif]-->

/ Le styles
%link{ :href => "//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap.min.css", :rel => "stylesheet" }
%link{ :href => "//ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/themes/ui-lightness/jquery-ui.css", :rel => "stylesheet" }
%link{ :href => "bootstrap.min.css", :rel => "stylesheet" }
%link{ :href => "jquery-ui.css", :rel => "stylesheet" }
%link{ :href => "sticky.css", :rel => "stylesheet"}
/ Le fav and touch icons
%link{ rel: "apple-touch-icon", href: "/bootstrap/images/apple-touch-icon.png"}
Expand Down
2 changes: 1 addition & 1 deletion views/patterns.haml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
.footer-wrapper
%footer
%div=haml :footer
%script{ :type => "text/javascript", :src =>"//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"}
%script{ :type => "text/javascript", :src =>"jquery.min.js"}
:javascript
$("a").click(function () {
$.get('patterns/' + $(this).attr("class"), function(data){
Expand Down