Commit 8c7caaa6 authored by Nihad Abbasov's avatar Nihad Abbasov

use chosen-rails

parent 475d9f48
...@@ -34,6 +34,7 @@ gem "colored" ...@@ -34,6 +34,7 @@ gem "colored"
gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git" gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git"
gem 'modularity' gem 'modularity'
gem 'resque_mailer' gem 'resque_mailer'
gem 'chosen-rails'
group :assets do group :assets do
gem "sass-rails", "3.2.3" gem "sass-rails", "3.2.3"
......
...@@ -105,6 +105,9 @@ GEM ...@@ -105,6 +105,9 @@ GEM
charlock_holmes (0.6.8) charlock_holmes (0.6.8)
childprocess (0.3.2) childprocess (0.3.2)
ffi (~> 1.0.6) ffi (~> 1.0.6)
chosen-rails (0.9.8)
railties (~> 3.0)
thor (~> 0.14)
coderay (1.0.6) coderay (1.0.6)
coffee-rails (3.2.2) coffee-rails (3.2.2)
coffee-script (>= 2.2.0) coffee-script (>= 2.2.0)
...@@ -330,6 +333,7 @@ DEPENDENCIES ...@@ -330,6 +333,7 @@ DEPENDENCIES
capybara capybara
carrierwave carrierwave
charlock_holmes charlock_holmes
chosen-rails
coffee-rails (= 3.2.2) coffee-rails (= 3.2.2)
colored colored
database_cleaner database_cleaner
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
//= require jquery.highlight //= require jquery.highlight
//= require bootstrap-modal //= require bootstrap-modal
//= require modernizr //= require modernizr
//= require chosen //= require chosen-jquery
//= require raphael //= require raphael
//= require branch-graph //= require branch-graph
//= require_tree . //= require_tree .
...@@ -75,7 +75,7 @@ function slugify(text) { ...@@ -75,7 +75,7 @@ function slugify(text) {
return text.replace(/[^-a-zA-Z0-9]+/g, '_').toLowerCase(); return text.replace(/[^-a-zA-Z0-9]+/g, '_').toLowerCase();
} }
function showDiff(link) { function showDiff(link) {
$(link).next('table').show(); $(link).next('table').show();
$(link).remove(); $(link).remove();
} }
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment