View Line_7-Times_Square_42nd_Street.txt
This file contains 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
This is Times Square - 42nd Street. | |
Transfer is available to the 1, 2, 3, A, B, C, D, E, F, M, N, Q, R and W trains. | |
Transfer is available to the shuttle to Grand Central. | |
Connection is available to the Port Authority Bus Terminal. | |
This is an accessible station. | |
The elevator is at the center of the platform. |
View draggamil-docready.js
This file contains 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
var draggamil = function() { | |
var dragItems = document.querySelectorAll('.sticker'); | |
var container = document.querySelector('.is---sticker_container'); | |
var dragStates = {}; | |
var dragMaxZ = 0; | |
dragItems.forEach(function (dragItem, idx) { | |
dragItem.setAttribute("drag-id", idx); | |
var initialTransform = window.getComputedStyle(dragItem).getPropertyValue('transform'); | |
dragStates["" + idx] = { |