Guest User

Untitled

a guest
Jul 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1.  
  2. function newPostHandler(location){
  3. if (location) {
  4. $('#post_latitude').val(location.coords.latitude);
  5. $('#post_longitude').val(location.coords.longitude);
  6. };
  7. }
  8.  
  9. Array.prototype.remove = function(element) {
  10. var index = this.indexOf(element);
  11. while (index != -1) {
  12. this.splice(index, 1);
  13. index = this.indexOf(element);
  14. }
  15. return this;
  16. }
Add Comment
Please, Sign In to add comment