Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: eaf2afcb3517258408fe7f48ec3d21b279fa67d2
https://github.com/phpmyadmin/phpmyadmin/commit/eaf2afcb3517258408fe7f48ec3…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-26 (Sun, 05 May 2019) -03:00
Changed paths:
M js/db_structure.js
M js/functions.js
Log Message:
-----------
Refactor js/db_structure.js
- Adds DatabaseStructure module
- Use camel case for the most of the variables
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 923e3fb050209b6c2846127f6327a6d0b5de1af9
https://github.com/phpmyadmin/phpmyadmin/commit/923e3fb050209b6c2846127f632…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-24 (Fri, 05 May 2019) -03:00
Changed paths:
M .eslintrc.json
M js/doclinks.js
M js/sql.js
Log Message:
-----------
Replace Array constructors with literal notation
Use of the Array constructor to construct a new array
is generally discouraged in favor of array literal
notation because of the single-argument pitfall and
because the Array global may be redefined. The exception
is when the Array constructor is used to intentionally
create sparse arrays of a specified size by giving
the constructor a single numeric argument.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Branch: refs/heads/master
Home: https://github.com/phpmyadmin/phpmyadmin
Commit: 0f7ddfd276928c711dc510fe19841234556a2b11
https://github.com/phpmyadmin/phpmyadmin/commit/0f7ddfd276928c711dc510fe198…
Author: Maurício Meneghini Fauth <mauricio(a)fauth.dev>
Date: 2019-05-24 (Fri, 05 May 2019) -03:00
Changed paths:
M js/designer/init.js
M js/designer/move.js
M js/designer/page.js
Log Message:
-----------
Refactor js/designer/move.js to use a module
Adds DesignerMove module in js/designer/move.js to reduce the number of global variables.
Signed-off-by: Maurício Meneghini Fauth <mauricio(a)fauth.dev>