This file has been truncated, but you can view the full file.
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
| { | |
| "nodes": [ | |
| { | |
| "id": 1, | |
| "callFrame": { | |
| "functionName": "(root)", | |
| "scriptId": "0", | |
| "url": "", | |
| "lineNumber": -1, | |
| "columnNumber": -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
| test |
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('svg4everybody')({polyfill: true}); | |
| require('./bootstrap'); | |
| // VUE | |
| import Vue from 'vue'; | |
| import App from './pages/App'; | |
| import Router from './router'; | |
| import Store from './store'; | |
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 Vue from 'vue'; | |
| import Router from 'vue-router'; | |
| import Login from '@/pages/login/Login'; | |
| import Home from '@/pages/home/Home'; | |
| import Users from '@/router/user.js'; | |
| Vue.use(Router); | |
| const baseRoutes = [ | |
| { | |
| path: '/login', |
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
| const mix = require('laravel-mix'); | |
| require('laravel-mix-tailwind'); | |
| const nesting = require('postcss-nesting'); | |
| require('laravel-mix-svg-sprite'); | |
| require('laravel-mix-alias'); | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Mix Asset Management | |
| |-------------------------------------------------------------------------- | |
| | |
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
| vendor/bin/phpunit |
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
| function removeElementFromArray(array, element){ | |
| var index = array.indexOf(element); | |
| if(index !== -1 ){ | |
| array.splice(index, 1); | |
| } | |
| return array; | |
| } |
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
| function getOnClickValue(data){ | |
| var stringObject = new String(data); | |
| debut_para = stringObject.indexOf("("); | |
| end_para = stringObject.indexOf(")"); | |
| // For the (' and ') | |
| var strings = stringObject.slice(debut_para+2, end_para-1); | |
| return strings; | |
| } | |
| // EXEMPLE : |
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
| <head> | |
| <style> | |
| .test:not(:empty) + p { | |
| color:green; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <span class="test"></span><p>Trucsdfsdf</p> | |
| <span class="test">xcvxcvxcvxcv</span><p>Truc</p> |
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
| $('.test').each(function() { | |
| if ( $.trim( $(this).text() ).length != 0 ) | |
| $(this).css('color', 'green'); | |
| } | |
| }); |
NewerOlder