This file contains hidden or 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
diff --git a/node_modules/react-native-maps/lib/components/Geojson.js b/node_modules/react-native-maps/lib/components/Geojson.js | |
index e72b56b..ddb69e2 100644 | |
--- a/node_modules/react-native-maps/lib/components/Geojson.js | |
+++ b/node_modules/react-native-maps/lib/components/Geojson.js | |
@@ -93,17 +93,69 @@ const makeCoordinates = feature => { | |
} | |
}; | |
+const doesOverlayContainProperty = (overlay, property) => { | |
+ // Geojson may have 0 for the opacity when intention is to not specify the |
This file contains hidden or 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
# based off of http://derekdevries.com/2009/04/13/rails-seed-data/ | |
require 'active_record/fixtures' | |
namespace :deploy do | |
desc "Deploy staging to heroku" | |
task :staging do | |
root = Rake.application.original_dir |
This file contains hidden or 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
(function() { | |
$(document).ready(function() { | |
return $("div.control-group").focusout(function() { | |
if (!$("div.control-group").hasClass("error")) { | |
return $(this).addClass("success"); | |
} | |
}); | |
}); | |
}).call(this); |