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'; | |
import ShareMixin from '../mixins/share'; | |
export default Ember.Component.extend(ShareMixin, { | |
}); |
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'; | |
import UpdateMixin from '../mixins/update'; | |
export default Ember.Component.extend(UpdateMixin,{ | |
}); |
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'; | |
export default Ember.Controller.extend({ | |
res_name:'<img src=x onerror=alert(1)>', | |
enc_res_name: '<img src=x onerror=alert(1)> test asdf as dfasd fasd fad fasd fa dsf', enc_attr_res_name:'<img src=x onerror=alert(1)> test asdf as dfasd fasd fad fasd fa dsf', | |
enc_url_res_name:'%3Cimg+src%3Dx+onerror%3Dalert%281%29%3E+test+asdf+as+dfasd+fasd+fad+fasd+fa+dsf', | |
image_over: '<img onmouseover=“alert(‘haii’)"/>' | |
}); |
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Ember.js Router Example</title> | |
<meta name="description" content="Example of a basic Ember.js application with a Router" /> | |
<meta name="author" content="http://codebrief.com" /> | |
<!--[if lt IE 9]> | |
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> |