Source : Learn to combine RxJs sequences with super intuitive interactive diagrams
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
| 'use strict'; | |
| angular.module('yourApp') | |
| .constant('Config', { | |
| viewDir: 'views/', | |
| API: { | |
| useMocks: true, | |
| fakeDelay: 2000, | |
| protocol: window.location.protocol.split(':')[0], | |
| host: window.location.hostname, |
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
| /* ------------------------ */ | |
| /* LESS mixin for CSS arrow */ | |
| /* ------------------------ */ | |
| /* https://github.com/HugoGiraudel/LESS-Mixin-for-CSS-arrows | |
| //Usage | |
| .arrow(size, color, direction, offset, border-size, border-color); | |
| Where |
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>Box Shadow</title> | |
| <style> | |
| .box { | |
| height: 150px; | |
| width: 300px; | |
| margin: 20px; |


