Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var showMyLocation = document.createElement('input');
- showMyLocation.type = "checkbox";
- showMyLocation.className = "checkboxForRange";
- showMyLocation.id = "showMyLocation";
- $$.children("#showMyLocation").html('<p style="float:left">Vis min posisjon :</p>').append(showMyLocation);
- $('#' + showMyLocation.id).change(function () { //location
- console.log("clicked");
- if ($(this).is(":checked")) {
- console.log("y");
- GarageHandler.showPosition();
- } else {
- console.log("n");
- GarageHandler.hidePosition();
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment