diff --git a/src/phantomjs.cpp b/src/phantomjs.cpp index 36eb09e822..8a2d209c0c 100644 --- a/src/phantomjs.cpp +++ b/src/phantomjs.cpp @@ -208,6 +208,10 @@ void Phantom::execute(const QString &fileName) } m_script = QString::fromUtf8(file.readAll()); file.close(); + + if (m_script.startsWith("#!")) { + m_script.prepend("//"); + } m_page.mainFrame()->evaluateJavaScript(m_script); }