diff options
author | anekos | 2013-09-20 23:22:18 +0900 |
---|---|---|
committer | anekos | 2013-09-20 23:22:18 +0900 |
commit | 8db9fab5913b464959bd5c4e9213865113c07da7 (patch) | |
tree | 49b19f14d44ee12a5460be2ad544ac4e767e0c4a | |
parent | 31477925a2e1125386b9af50375afad6056c4704 (diff) | |
download | vimperator-plugins-8db9fab5913b464959bd5c4e9213865113c07da7.tar.bz2 |
Fix syntax error?
-rw-r--r-- | maine_coon.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maine_coon.js b/maine_coon.js index fab21ca..b28546b 100644 --- a/maine_coon.js +++ b/maine_coon.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2008-2011, anekos. +Copyright (c) 2008-2013, anekos. All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -272,7 +272,7 @@ let PLUGIN_INFO = xml` }) + elemStyle ); - let elem = U.xmlToDom(<div id="liberator_maine_coon" style={style}>{message}</div>, doc); + let elem = U.xmlToDom(`<div id="liberator_maine_coon" style=${style}>${message}</div>`, doc); doc.body.appendChild(elem); let count = time; let handle = setInterval(function () { |