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
| import Ember from 'ember'; | |
| var pfx = ["webkit", "moz", "MS", "o", ""]; | |
| export default Ember.Controller.extend({ | |
| appName: 'spinner demo', | |
| isLoading: true, | |
| speed: null, | |
| startEngine: false, |
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
| (http[s]?:\/\/)?([^\/\s]+)\/?([^\/\s]+)\/(.*)\?(.*)\#(.*)\b | |
| example here: https://regex101.com/r/QJdP9m/1 | |
| Full match: https://www.somehost.com/path/that/you/can/target?query=butwhy#because | |
| Group 1: https:// | |
| Group 2: www.somehost.com | |
| Group 3: path | |
| Group 4: that/you/can/target | |
| Group 5: query=butwhy |
NewerOlder