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
| <?php | |
| class SparkServiceProvider extends ServiceProvider | |
| { | |
| /** | |
| * Register any application services. | |
| * | |
| * @return void | |
| */ | |
| public function register() |
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
| var base = require('settings/profile/update-contact-information'); | |
| Vue.component('spark-update-contact-information', { | |
| mixins: [base], | |
| /** | |
| * The component's data. | |
| */ | |
| data() { | |
| return { |
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
| <!-- Phone --> | |
| <div class="form-group" :class="{'has-error': form.errors.has('phone')}"> | |
| <label class="col-md-4 control-label">Phone</label> | |
| <div class="col-md-6"> | |
| <input type="phone" class="form-control" name="phone" v-model="form.phone"> | |
| <span class="help-block" v-show="form.errors.has('phone')"> | |
| @{{ form.errors.get('phone') }} | |
| </span> |
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
| class Entity | |
| { | |
| protected Texture2D _texture; | |
| public Vector2 Position; | |
| protected Vector2 _velocity; | |
| public Vector2 Velocity { get { return _velocity; } } |
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
| var time = ''; | |
| var hour = 0; | |
| var min = 0; | |
| var sec = 0; | |
| $.each($('.Lesson-List__length'), function(i, el) { | |
| min += parseInt($(el).text().split(':')[0]); | |
| sec += parseInt($(el).text().split(':')[1]); | |
| if(sec >= 60) { | |
| min += parseInt(sec/60); | |
| sec %= 60; |
NewerOlder