Remove unused gem and add a comment where it was replaced
This commit is contained in:
parent
17b23b0756
commit
2e349ab51a
3 changed files with 5 additions and 5 deletions
3
Gemfile
3
Gemfile
|
@ -29,9 +29,6 @@ gem 'i18n-js', '>= 3.0.0.rc2'
|
|||
# We need ruby-openid 2.2.0 or later for ruby 1.9 support
|
||||
gem 'ruby-openid', '>= 2.2.0'
|
||||
|
||||
# Browser detection support
|
||||
gem 'browser'
|
||||
|
||||
# Markdown formatting support
|
||||
gem 'redcarpet'
|
||||
|
||||
|
|
|
@ -31,7 +31,6 @@ GEM
|
|||
multi_json (~> 1.0)
|
||||
arel (3.0.2)
|
||||
bigdecimal (1.1.0)
|
||||
browser (0.1.4)
|
||||
builder (3.0.0)
|
||||
cocaine (0.2.1)
|
||||
coffee-rails (3.2.2)
|
||||
|
@ -163,7 +162,6 @@ PLATFORMS
|
|||
DEPENDENCIES
|
||||
SystemTimer (>= 1.1.3)
|
||||
bigdecimal
|
||||
browser
|
||||
coffee-rails (~> 3.2.1)
|
||||
composite_primary_keys (>= 5.0.8)
|
||||
deadlock_retry (>= 1.2.0)
|
||||
|
|
|
@ -225,6 +225,11 @@ function loadData(url, reload) {
|
|||
|
||||
if (browseDataLayer) browseDataLayer.destroyFeatures();
|
||||
|
||||
/*
|
||||
* Modern browsers are quite happy showing far more than 100 features in
|
||||
* the data browser, so increase the limit to 2000 by default, but keep
|
||||
* it restricted to 500 for IE8 and 100 for older IEs.
|
||||
*/
|
||||
var maxFeatures = 2000;
|
||||
|
||||
/*@cc_on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue