Drupal's default behavior is to redirect the user to the full display of a node after it has been saved.
If you want to stay in the edit form after saving, add this snippet to a custom module adjusting the module namespace in the two functions.
Drupal's default behavior is to redirect the user to the full display of a node after it has been saved.
If you want to stay in the edit form after saving, add this snippet to a custom module adjusting the module namespace in the two functions.
| # get into the master branch | |
| git checkout master | |
| # create a new branch for the changes and check it out | |
| git checkout -b dev_branch | |
| # stash the changes until we revert master | |
| git stash | |
| # go back to master |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| git clone <repo-address> | |
| git tag -l | |
| git checkout <tag-name> | |
| git branch -D master | |
| git checkout -b master |