Skip to content

Commit

Permalink
Started coding the "Commit" button
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Nov 17, 2023
1 parent ff132a0 commit a400f40
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ load_once_from_file(true)
data: function () {
// ******** DATA ********
return {
commit_pane_header: "",
commit_pane_description: "",
releaseMessage: "",
releaseErrorMessage: "",
Expand Down Expand Up @@ -270,6 +271,7 @@ load_once_from_file(true)
<input
style='text-decoration: underline;flex:1;font-family:verdana,helvetica;font-size: 13px;margin-left:10px;'
v-on:click=''
v-model='commit_pane_header'
value=''>
</input>
</div>
Expand Down Expand Up @@ -346,6 +348,12 @@ load_once_from_file(true)
mounted: async function() {
},
methods: {
choosePane_commitPressed: async function ( ) {
debugger
let mm = this
let header = mm.commit_pane_header
let desc = mm.commit_pane_description
},
releaseCodePressed: async function ( ) {
//----------------------------------------------------------------------------------
//
Expand Down

0 comments on commit a400f40

Please sign in to comment.