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.Component.extend({ | |
name2: 'Micheal', | |
actions: { | |
name2DidChange: function(value) { | |
this.set('name2', value); | |
} | |
} | |
}); |
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.Component.extend({ | |
name2: 'Micheal', | |
actions: { | |
name2DidChange: function(value) { | |
this.set('name2', value); | |
} | |
} | |
}); |
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({ | |
appName: 'Ember Twiddle' | |
}); |
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 { task, taskGroup, timeout } from 'ember-concurrency'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
year: 2017, | |
event: 'Party', | |
events: ['Party', 'Fiesta', 'Souiree', 'Murder Mystery Party', 'Ball', 'Conference', 'Get Down'], | |
error: null, | |
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({ | |
appName: 'Ember Twiddle', | |
string: 'relish', | |
safeString: Ember.computed('string', function() { | |
let string = this.get('string'); | |
if (string.indexOf('<') > -1) { |
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({ | |
appName: 'Ember Twiddle', | |
// list: Ember.computed('model', function() { | |
// return this.get('model'); | |
// }, | |
placeholder: 'wut u lern 2day?', | |
buttonText: 'add', | |
newContent: '', |
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({ | |
appName: 'Ember Twiddle', | |
data: '<div id="injected_footerContent" style="display:none;"> <a target="_blank" class="login-adLink" href="https://www.mymax.com/about-max/locations-and-atms">Locations</a> <a target="_blank" class="login-adLink" href="https://www.mymax.com/get-started-with-max/personal-financial-rates">Rates</a> <a target="_blank" class="login-adLink" href="https://www.mymax.com/customer-service">Customer Service</a> <a target="_blank" class="login-adLink" href="https://ob2.mymax.com/MAXCreditUnionAutoEnrollment/AutoEnrollment.html">Enroll</a> </div> <img src="data:image/gif;base64, R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs=" onload="$('.login-icons').append($('#injected_footerContent')[0].innerHTML);" /><div style="width:80%;margin:0 auto; white-space:normal; font-size: 0.9em;"> <p><font color="white">This credit union is federally insured by the National Credit Union Administration.</font></p> <p style="font-weight:bo |