sudo apt-get purge openjdk*
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java9-installer
sudo apt-get install oracle-java9-set-default
cd ~/Downloads
wget https://download.jetbrains.com/webide/PhpStorm-2016.3.2.tar.gz // replace with latest version
tar -xvf PhpStorm-2016.3.2.tar.gz
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
{ | |
"17-0105": { | |
"total_floors": { | |
"old": 3, | |
"new": 4 | |
} | |
} | |
} |
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> | |
<draggable :list="children" v-if="children" :options="{ group: { name: parentId }, | |
chosenClass: 'draggable--dragging', | |
handle: '.draggable__handle', | |
dataIdAttr: 'data-id', | |
}" @update="onUpdate" class="collapse" :id="'toggle-'+parentId"> | |
<ul v-for="child in children" :data-id="child.id" class="draggable"> | |
<li class="db-forum-board"> | |
<span class="draggable__handle"><i class="fa fa-bars"></i></span> | |
<div class="db-forum-board__title"> |