initial commits
parent
5050382df9
commit
f0d1e8a88d
|
@ -6,7 +6,7 @@ package frameproto
|
||||||
//
|
//
|
||||||
// var buttonAction string = "post"
|
// var buttonAction string = "post"
|
||||||
//
|
//
|
||||||
// str := frameproto.StringFrameButton1Action(aspectRatio)
|
// str := frameproto.StringFrameButton1Action(buttonAction)
|
||||||
//
|
//
|
||||||
// Would return this HTML <meta/> element:
|
// Would return this HTML <meta/> element:
|
||||||
//
|
//
|
||||||
|
@ -17,18 +17,22 @@ package frameproto
|
||||||
//
|
//
|
||||||
// Which in code would be used as:
|
// Which in code would be used as:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:1:action" content="link" />
|
||||||
// str := frameproto.StringFrameButton1Action(frameproto.ButtonActionLink)
|
// str := frameproto.StringFrameButton1Action(frameproto.ButtonActionLink)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:1:action" content="mint" />
|
||||||
// str := frameproto.StringFrameButton1Action(frameproto.ButtonActionMint)
|
// str := frameproto.StringFrameButton1Action(frameproto.ButtonActionMint)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:1:action" content="post" />
|
||||||
// str :+ frameproto.StringFrameButton1Action(frameproto.ButtonActionPost)
|
// str :+ frameproto.StringFrameButton1Action(frameproto.ButtonActionPost)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:1:action" content="post_redirect" />
|
||||||
// str := frameproto.StringFrameButton1Action(frameproto.ButtonActionPostRedirect)
|
// str := frameproto.StringFrameButton1Action(frameproto.ButtonActionPostRedirect)
|
||||||
func StringFrameButton1Action(action string) string {
|
func StringFrameButton1Action(action string) string {
|
||||||
const property string = MetaPropertyFrameButton1Action
|
const property string = MetaPropertyFrameButton1Action
|
||||||
|
|
|
@ -6,7 +6,7 @@ package frameproto
|
||||||
//
|
//
|
||||||
// var buttonAction string = "post"
|
// var buttonAction string = "post"
|
||||||
//
|
//
|
||||||
// str := frameproto.StringFrameButton2Action(aspectRatio)
|
// str := frameproto.StringFrameButton2Action(buttonAction)
|
||||||
//
|
//
|
||||||
// Would return this HTML <meta/> element:
|
// Would return this HTML <meta/> element:
|
||||||
//
|
//
|
||||||
|
@ -17,18 +17,22 @@ package frameproto
|
||||||
//
|
//
|
||||||
// Which in code would be used as:
|
// Which in code would be used as:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:2:action" content="link" />
|
||||||
// str := frameproto.StringFrameButton2Action(frameproto.ButtonActionLink)
|
// str := frameproto.StringFrameButton2Action(frameproto.ButtonActionLink)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:2:action" content="mint" />
|
||||||
// str := frameproto.StringFrameButton2Action(frameproto.ButtonActionMint)
|
// str := frameproto.StringFrameButton2Action(frameproto.ButtonActionMint)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:2:action" content="post" />
|
||||||
// str :+ frameproto.StringFrameButton2Action(frameproto.ButtonActionPost)
|
// str :+ frameproto.StringFrameButton2Action(frameproto.ButtonActionPost)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:2:action" content="post_redirect" />
|
||||||
// str := frameproto.StringFrameButton2Action(frameproto.ButtonActionPostRedirect)
|
// str := frameproto.StringFrameButton2Action(frameproto.ButtonActionPostRedirect)
|
||||||
func StringFrameButton2Action(action string) string {
|
func StringFrameButton2Action(action string) string {
|
||||||
const property string = MetaPropertyFrameButton2Action
|
const property string = MetaPropertyFrameButton2Action
|
||||||
|
|
|
@ -6,7 +6,7 @@ package frameproto
|
||||||
//
|
//
|
||||||
// var buttonAction string = "post"
|
// var buttonAction string = "post"
|
||||||
//
|
//
|
||||||
// str := frameproto.StringFrameButton3Action(aspectRatio)
|
// str := frameproto.StringFrameButton3Action(buttonAction)
|
||||||
//
|
//
|
||||||
// Would return this HTML <meta/> element:
|
// Would return this HTML <meta/> element:
|
||||||
//
|
//
|
||||||
|
@ -17,18 +17,22 @@ package frameproto
|
||||||
//
|
//
|
||||||
// Which in code would be used as:
|
// Which in code would be used as:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:3:action" content="link" />
|
||||||
// str := frameproto.StringFrameButton3Action(frameproto.ButtonActionLink)
|
// str := frameproto.StringFrameButton3Action(frameproto.ButtonActionLink)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:3:action" content="mint" />
|
||||||
// str := frameproto.StringFrameButton3Action(frameproto.ButtonActionMint)
|
// str := frameproto.StringFrameButton3Action(frameproto.ButtonActionMint)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:3:action" content="post" />
|
||||||
// str :+ frameproto.StringFrameButton3Action(frameproto.ButtonActionPost)
|
// str :+ frameproto.StringFrameButton3Action(frameproto.ButtonActionPost)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:3:action" content="post_redirect" />
|
||||||
// str := frameproto.StringFrameButton3Action(frameproto.ButtonActionPostRedirect)
|
// str := frameproto.StringFrameButton3Action(frameproto.ButtonActionPostRedirect)
|
||||||
func StringFrameButton3Action(action string) string {
|
func StringFrameButton3Action(action string) string {
|
||||||
const property string = MetaPropertyFrameButton3Action
|
const property string = MetaPropertyFrameButton3Action
|
||||||
|
|
|
@ -6,7 +6,7 @@ package frameproto
|
||||||
//
|
//
|
||||||
// var buttonAction string = "post"
|
// var buttonAction string = "post"
|
||||||
//
|
//
|
||||||
// str := frameproto.StringFrameButton4Action(aspectRatio)
|
// str := frameproto.StringFrameButton4Action(buttonAction)
|
||||||
//
|
//
|
||||||
// Would return this HTML <meta/> element:
|
// Would return this HTML <meta/> element:
|
||||||
//
|
//
|
||||||
|
@ -17,18 +17,22 @@ package frameproto
|
||||||
//
|
//
|
||||||
// Which in code would be used as:
|
// Which in code would be used as:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:4:action" content="link" />
|
||||||
// str := frameproto.StringFrameButton4Action(frameproto.ButtonActionLink)
|
// str := frameproto.StringFrameButton4Action(frameproto.ButtonActionLink)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:4:action" content="mint" />
|
||||||
// str := frameproto.StringFrameButton4Action(frameproto.ButtonActionMint)
|
// str := frameproto.StringFrameButton4Action(frameproto.ButtonActionMint)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:4:action" content="post" />
|
||||||
// str :+ frameproto.StringFrameButton4Action(frameproto.ButtonActionPost)
|
// str :+ frameproto.StringFrameButton4Action(frameproto.ButtonActionPost)
|
||||||
//
|
//
|
||||||
// And:
|
// And:
|
||||||
//
|
//
|
||||||
|
// // <meta property="fc:frame:button:4:action" content="post_redirect" />
|
||||||
// str := frameproto.StringFrameButton4Action(frameproto.ButtonActionPostRedirect)
|
// str := frameproto.StringFrameButton4Action(frameproto.ButtonActionPostRedirect)
|
||||||
func StringFrameButton4Action(action string) string {
|
func StringFrameButton4Action(action string) string {
|
||||||
const property string = MetaPropertyFrameButton4Action
|
const property string = MetaPropertyFrameButton4Action
|
||||||
|
|
Loading…
Reference in New Issue