beanbagdb-components 0.2.6 → 0.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/app.js CHANGED
@@ -125,6 +125,9 @@ const handle_bbdb_action = (action_data)=>{
125
125
  "message_link":()=>{
126
126
  let message = `${action.message} Doc Link : <a href='doc.html?doc=${action.link}' target='_blank'>View</a>`
127
127
  showMessage(action.type,message)
128
+ },
129
+ "open_link":()=>{
130
+ window.open(`doc.html?doc=${action.link}`, '_blank');
128
131
  }
129
132
  }
130
133
  all_actions[action.name]()