Skip to content

Commit

Permalink
1.0.15 (2019/04/07-3)
Browse files Browse the repository at this point in the history
uploaded at 2019/04/07 20:15.
* fixed to attach a media file in toot new window.
  • Loading branch information
nishlumi committed Apr 7, 2019
1 parent 1da728e commit 681a61b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pwabuilder-sw.js
@@ -1,6 +1,6 @@
//This is the service worker with the Cache-first network

var CACHE = "G+Don-1015-20190407-02";
var CACHE = "G+Don-1015-20190407-03";
var precacheFiles = [
/* Add an array of files to precache for your app */
"/",
Expand Down
2 changes: 1 addition & 1 deletion static/js/clientclass.js
Expand Up @@ -12,7 +12,7 @@ class Gplusdon {
staticPath : ID("hid_staticpath").value,
author: hidinfo[2],
version: hidinfo[3],
revision : "20190407-02",
revision : "20190407-03",
config : {
limit_search_instance : 50,
toot_max_character : 500,
Expand Down
5 changes: 3 additions & 2 deletions static/js/cls_vue.js
Expand Up @@ -661,10 +661,11 @@ Vue.component("timeline-toot", {
MYAPP.commonvue.tootecard.comment_list_area_viewstyle.scrollwithoutmini = true;
MYAPP.commonvue.tootecard.datastyle.toot_action_class.has_comment_pos_full = true;

this.reply_data = this.generateReplyObject(this.toote);
MYAPP.commonvue.tootecard.$refs.tootview.reply_data = this.generateReplyObject(this.toote);
MYAPP.commonvue.tootecard.$nextTick(()=>{
MYAPP.commonvue.tootecard.$refs.tootview.set_replydata();
MYAPP.commonvue.tootecard.$refs.tootview.apply_childReplyInput();
MYAPP.commonvue.tootecard.$refs.tootview.$refs.replyinput.select_sender_account();
});

//---change each states
Expand Down Expand Up @@ -770,7 +771,7 @@ Vue.component("timeline-toot", {
//---set up data for reply
this.reply_data = this.generateReplyObject(this.toote);
this.$refs.replyinput.enable_wasReplyInput(false);
//this.replyinput.select_sender_account();
//this.$refs.replyinput.replyinput.select_sender_account();
//this.call_replySetup();

//---set up view layout for reply
Expand Down
2 changes: 1 addition & 1 deletion static/js/mixins_vue.js
Expand Up @@ -2032,7 +2032,7 @@ var vue_mixin_for_inputtoot = {
this.insertText("-cw-");
},
onclick_addimage : function(e) {
ID("dmy_openmdia").click();
ID(this.movingElementID('replyopenmedia_')).click();
},
onclick_addgeo : function (e) {
if (this.is_geo) {
Expand Down
2 changes: 1 addition & 1 deletion static/res/res_template_replyinput.js
Expand Up @@ -108,7 +108,7 @@ const CONS_TEMPLATE_REPLYINPUT = `
</v-menu>
</template>
<input type="file" id="dmy_openmdia" class="common_ui_off" v-on:change="onchange_openmedia">
<input type="file" :id="movingElementID('replyopenmedia_')" class="common_ui_off" v-on:change="onchange_openmedia">
</v-flex>
<v-flex xs5>
<v-checkbox :label="generate_showable_mention()" class="showable_mention truncate" v-model="is_set_mention_checkbox"></v-checkbox>
Expand Down

0 comments on commit 681a61b

Please sign in to comment.