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
| <template> | |
| <div class="ui container stackable grid"> | |
| <div class="sixteen wide column" v-if="this.loading"> | |
| <div class="ui segment" style="height:200px;"> | |
| <div class="ui inverted dimmer" :class="{active: loading}"> | |
| <div class="ui text large loader">Loading</div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="eight wide column" v-if="!this.loading"> |
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
| Vue.component('rating', { | |
| template: `<div class="ui star rating" :data-rating="value"></div>`, | |
| props: ['value'], | |
| watch: { | |
| value: function (val, oldVal) { | |
| if (val == null) { | |
| $(this.$el).rating('clear rating'); | |
| } | |
| } | |
| }, |
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
| console.table($x('ancestor-or-self::*',$0).map(e=>({e,zIndex:getComputedStyle(e).zIndex}))) |
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
| /* | |
| *************************************************************************************************** | |
| The following methods are implemented in this file | |
| 1. function Blanks_Validation(sValue) | |
| 2. function IsPure_Numeric(sValue) | |
| 3. function IsNumeric(sValue) | |
| 4. function IsValid_US_Phone_Or_Fax(sValue) | |
| 5. function IsAlpha_Numeric(sValue) | |
| 6. function IsValid_Email(sValue) |
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
| $this->visitRoute('history.index') | |
| ->within('th a', function() { $this->click('Register'); }) | |
| ->seeRouteIs('history.index', ['sort' => '5', 'sorttype' => 'asc']); |
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
| <h1 class="gradient-text"> | |
| <span>Good afternoon.</span><br> | |
| How can we help you today? | |
| </h1> |
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
| <!-- Make sure you have Semantic-UI libs include | |
| Also, Ensure you import jQuery for smooth transition | |
| Once you have all the imports add this to your html: | |
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| $('.dropdown').dropdown(); | |
| }); | |
| </script> | |
| --> | |
| <div class="field"> |
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
| <!-- Make sure you have Semantic-UI libs include | |
| Also, Ensure you import jQuery for smooth transition | |
| Once you have all the imports add this to your html: | |
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| $('.dropdown').dropdown(); | |
| $('.ui.checkbox').checkbox(); | |
| }); | |
| </script> | |
| --> |
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
| <!-- Make sure you have Semantic-UI libs include | |
| Also, Ensure you import jQuery for smooth transition | |
| Once you have all the imports add this to your html: | |
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| $('.dropdown').dropdown(); | |
| $('.ui.checkbox').checkbox(); | |
| }); | |
| </script> |
NewerOlder