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
.ui-autocomplete { | |
position: absolute; | |
top: 100%; | |
left: 0; | |
z-index: 1000; | |
float: left; | |
display: none; | |
min-width: 160px; | |
_width: 160px; | |
padding: 4px 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
({ extendsFrom: 'RecordView', | |
initialize: function(options) { | |
this._super('initialize', [options]); | |
this.on("render", this.displayFunction, this);//launch it whenever your page is rendered | |
this.model.on("change:objectifs_c",this.displayFunction, this);//display changes when the multi select changes for visite objectifs | |
this.model.on("change:phonobjectif_c",this.displayFunction, this); | |
this.model.on("change:actioncoobjectif_c",this.displayFunction, this); | |
}, |
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
({ extendsFrom: 'RecordView', // extendsFrom: 'CreateView', | |
initialize: function(options) { | |
this._super('initialize', [options]); | |
this.model.on('sync', this.UpdateDateVisite, this); | |
}, | |
UpdateDateVisite : function() { |
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
Feature: Login | |
In order to gain access to the skoazell interface | |
As a web user | |
I need to login | |
@javascript | |
Scenario: Loggin in with correct username and password | |
Given I am on "/" | |
When I fill in "form-_username" with "[email protected]" | |
When I fill in "form-_password" with "123" |
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
onContentReady: function() { | |
var $addButton = $('#add'); | |
console.log(SearchFiltersSKZ); | |
if(! $addButton.length ) // | |
{ | |
$( '<div id="add" aria-label="edit-button-addrow" role="button" onclick="void(0)" tabindex="0" title="Add a row" class="dx-edit-button dx-datagrid-addrow-button dx-widget dx-button-has-icon dx-button dx-button-normal"><div class="dx-button-content"><i class="dx-icon dx-icon-edit-button-addrow"></i></div></div>' ).insertAfter('.dx-datagrid-export-button'); |
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
$("#{{ target }}").dxSelectBox({ | |
items: itemsArrayforSelectBox, | |
onValueChanged: function (e) { | |
swal({ | |
title: "Are you sure?", | |
text: "Deleting !", | |
type: "warning", | |
showCancelButton: true, | |
confirmButtonColor: "#DD6B55", | |
confirmButtonText: "Yes, change it!", |
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
/*! | |
* DevExtreme Web | |
* Version: 16.1.4 | |
* Build date: Jun 22, 2016 | |
* | |
* Copyright (c) 2012 - 2016 Developer Express Inc. ALL RIGHTS RESERVED | |
* EULA: https://www.devexpress.com/Support/EULAs/DevExtreme.xml | |
*/ | |
(function(root, factory) { |
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 production = process.env.NODE_ENV === 'production'; | |
var path = require('path'); | |
var webpack = require('webpack'); | |
var UnminifiedWebpackPlugin = require('unminified-webpack-plugin'); | |
module.exports = { | |
entry: { | |
product: './web/js/productApp.js' | |
}, | |
output: { |
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 Monster { | |
constructor({name}) { | |
this.health = 100; | |
this.name = name; | |
} | |
} | |
class Snake extends Monster { | |
constructor(options) { | |
super(options); |
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
process.stdin.resume(); | |
process.stdin.setEncoding('ascii'); | |
let input_stdin = ''; | |
let input_stdin_array = ''; | |
let input_currentline = 0; | |
process.stdin.on('data', (data) => { | |
input_stdin += data; |