@@ -16,31 +16,31 @@ export default Ember.Component.extend(DropdownSubmenuFixMixin, {
1616
1717 actions : {
1818 addComponent ( ) {
19- this . attrs . addComponent ( ) ;
19+ this . addComponent ( ) ;
2020 } ,
2121 addHelper ( ) {
22- this . attrs . addHelper ( ) ;
22+ this . addHelper ( ) ;
2323 } ,
2424 addFile ( type ) {
25- this . attrs . addFile ( type ) ;
25+ this . addFile ( type ) ;
2626 } ,
2727 addUnitTestFile ( type ) {
28- this . attrs . addUnitTestFile ( type ) ;
28+ this . addUnitTestFile ( type ) ;
2929 } ,
3030 addIntegrationTestFile ( type ) {
31- this . attrs . addIntegrationTestFile ( type ) ;
31+ this . addIntegrationTestFile ( type ) ;
3232 } ,
3333 addAcceptanceTestFile ( ) {
34- this . attrs . addAcceptanceTestFile ( ) ;
34+ this . addAcceptanceTestFile ( ) ;
3535 } ,
3636 renameFile ( file ) {
37- this . attrs . renameFile ( file ) ;
37+ this . renameFile ( file ) ;
3838 } ,
3939 removeFile ( file ) {
40- this . attrs . removeFile ( file ) ;
40+ this . removeFile ( file ) ;
4141 } ,
4242 saveGist ( model ) {
43- this . attrs . saveGist ( model ) ;
43+ this . saveGist ( model ) ;
4444 } ,
4545 share ( ) {
4646 prompt ( 'Ctrl + C ;-)' , window . location . href ) ;
@@ -58,25 +58,25 @@ export default Ember.Component.extend(DropdownSubmenuFixMixin, {
5858 prompt ( 'Ctrl + C ;-)' , embedCode ) ;
5959 } ,
6060 fork ( model ) {
61- this . attrs . fork ( model ) ;
61+ this . fork ( model ) ;
6262 } ,
6363 copy ( ) {
64- this . attrs . copy ( ) ;
64+ this . copy ( ) ;
6565 } ,
6666 deleteGist ( model ) {
67- this . attrs . deleteGist ( model ) ;
67+ this . deleteGist ( model ) ;
6868 } ,
6969 signInViaGithub ( ) {
70- this . attrs . signInViaGithub ( ) ;
70+ this . signInViaGithub ( ) ;
7171 } ,
7272 showRevision ( id ) {
73- this . attrs . showRevision ( id ) ;
73+ this . showRevision ( id ) ;
7474 } ,
7575 showCurrentVersion ( ) {
76- this . attrs . showCurrentVersion ( ) ;
76+ this . showCurrentVersion ( ) ;
7777 } ,
7878 downloadProject ( ) {
79- this . attrs . downloadProject ( ) ;
79+ this . downloadProject ( ) ;
8080 }
8181 }
8282} ) ;
0 commit comments