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
| <?php | |
| $cities = array( | |
| "tokyo" => array( | |
| 13.6, 1868, "Japan" | |
| ), | |
| "dc" => array( | |
| 0.6, 1790, "United States" | |
| ), | |
| "moscow" => array( | |
| 11.5, 1147, "Russia" |
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
| /home/adam/code/CodeBreakerProject/test/main.spec.js:4 | |
| const { assert } = require('chai'); | |
| ^ | |
| SyntaxError: Unexpected token { |
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
| var gridMotion = { | |
| position: [0, 0], | |
| moveHorizontal: function(stepx) { | |
| gridMotion.position[0] += stepx; | |
| }, | |
| moveVertical: function(stepy) { | |
| gridMotion.position[1] += stepy; | |
| } | |
| } |
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
| <html> | |
| // Omitted for brevity | |
| <body> | |
| // elements here | |
| <script src="https://jquery-example.com/jquery.min.js"></script> | |
| </body> | |
| </html> |
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
| $(document).ready(function() { | |
| //$("div.button").hover(function() { | |
| // $(this).toggleClass("button-hover"); | |
| // }); | |
| // Start: Title button's functionality | |
| $('#title-form .button').click(function() { |
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
| $(document).ready(function() { | |
| //$("div.button").hover(function() { | |
| // $(this).toggleClass("button-hover"); | |
| // }); | |
| // Start: Title button's functionality | |
| $('#title-form .button').click(function() { |
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
| $(document).ready(function() { | |
| $("div.button").hover(function() { | |
| // $(this).toggleClass("button-hover"); | |
| }); | |
| // Start: Title button's functionality | |
| $('#title-form .button').click(function() { |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Trey's Albums</title> | |
| <link rel="stylesheet" type="text/css" href="css/reset.css"> | |
| <link href="https://fonts.googleapis.com/css?family=Reenie+Beanie" rel="stylesheet"> | |
| <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css"> | |
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
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
| $(document).ready(function() { | |
| $("div.button").hover(function() { | |
| }); | |
| //$(this).toggleClass("button-hover"); | |
| // Start: Title button's functionality | |
| $('#title-form .button').click(function() { |
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
| <link href="css/main.css" rel="stylesheet" /> | |
| <link href="css/leaflet.css" /> <----------- edit this line | |
| <script src="js/vendor/angular.min.js"></script> | |
| <script src="js/vendor/leaflet.js"></script> | |
| <script src="js/vendor/angular-leaflet-directive.min.js"></script> |