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
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
ServerName belajar-test.dev | |
DocumentRoot D:\web-project\test.dev\frontend\web | |
<Directory D:\web-project\test.dev\frontend\web> | |
Options -Indexes +FollowSymLinks +MultiViews | |
Require all granted | |
AllowOverride all | |
Order allow,deny |
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 | |
$text = isset($_POST['a']) ? $_POST['a'] : ''; | |
$uname = isset($_POST['uname']) ? $_POST['uname'] : ''; | |
$mode = isset($_POST['mode']) ? $_POST['mode'] : ''; | |
$modeList = [ | |
'kuroshi' => 'Kuroshi', | |
'shiba' => 'Shiba' | |
]; | |
?> | |
<!DOCTYPE html> |
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
@if "%1" == "" goto NOPROJECT | |
@if "%2" == "" goto NODIR | |
@if "%1" == "rn" SET FOLDER=rn | |
@if "%1" == "web" SET FOLDER=web | |
@SET MAIN_FOLDER=\%FOLDER%-project\%2 | |
@if exist "%~d0\%MAIN_FOLDER%" ( | |
@cd /d "%~dp0" |
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 "%~dp0composer.phar" %* |
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
/****************************************************************************** | |
jquery.transformable.js v0.3.4 copyright 2013 Aaron Flin (aaron at flin dot org). | |
- fixed test for mozillaOverflowHiddenBug, which would improperly always return true | |
- todo: fix the parseFloat(computedStyle.[top|left]) in jQuery.fn.transformable.offsetNoGetBounds | |
so that it can handle %, or better yet, figure out a better way. Without a fix, I think | |
older Mozilla browsers will choke on a div with offsetParents that are not positioned in 'px' | |
jquery.transformable.js v0.3.3 copyright 2013 Aaron Flin (aaron at flin dot org). | |
- added initial support for dragging sortables in transformed divs. |
NewerOlder