iFrame icon indicating copy to clipboard operation
iFrame copied to clipboard

I frame syntax error

Open hawkesley opened this issue 7 years ago • 1 comments

I would like to use this to display a page on my own server. I am getting a sytax error but I cant seee how to correct it. Any help appreciated 70 Expected '}' to match '{' from line 17 and instead saw 'height'. 70 Missing semicolon. 70 Unrecoverable syntax error. (60% scanned). { module: 'iFrame', position: 'bottom_left', // This can be any of the regions. config: { // See 'Configuration options' for more information. url: "http://www.xxx.com/" width: "100%" // Optional. Default: 100% height: "100px" //Optional. Default: 100px } },

hawkesley avatar Mar 18 '17 11:03 hawkesley

You are missing the commas after each line in the config section. Therefore, the parser expects '}' already after the url line.

DarkAngelMUC avatar Apr 18 '17 16:04 DarkAngelMUC