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
| App.AccountEditRoute = Ember.Route.extend({ | |
| setupController: function(controller) { | |
| controller.set('content', this.get('currentUser')); | |
| } | |
| }); |
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
| #test3 { | |
| background-color: black; | |
| } |
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
| // Last commit: 2bcc767 (2013-03-07 17:07:46 -0800) | |
| (function() { | |
| window.DS = Ember.Namespace.create({ | |
| // this one goes past 11 | |
| CURRENT_API_REVISION: 12 | |
| }); | |
| })(); |
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
| /*! | |
| * Datepicker for Bootstrap | |
| * | |
| * Copyright 2012 Stefan Petre | |
| * Licensed under the Apache License v2.0 | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| */ | |
| .datepicker { | |
| top: 0; |
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
| /* ========================================================= | |
| * bootstrap-datepicker.js | |
| * http://www.eyecon.ro/bootstrap-datepicker | |
| * ========================================================= | |
| * Copyright 2012 Stefan Petre | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * |
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
| App.FindPartiesService = Em.Object.extend | |
| init: ( check=@.get('check') ) -> | |
| @_super() | |
| @check=check | |
| throw "No Check Provided" unless @check | |
| @getPartiesFromCheck() | |
| getPartiesFromCheck: (check=@check) -> | |
| @parties=check.get('parties') | |
| @parties |
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
| require('spine/lib/manager') | |
| class Main extends Spine.Stack | |
| routes: | |
| 'adventure': 'adv' | |
| 'home': 'home' | |
| 'information': 'info' | |
| controllers: | |
| info: Information | |
| home: Home |
NewerOlder