Merge pull request #1172 from robert-h-curry/preview-pane-refresh

Force preview window to refresh on every save
This commit is contained in:
Sean Harvey 2013-02-12 15:09:19 -08:00
commit 15a156955b

View File

@ -318,10 +318,7 @@
* Change the URL of the preview iframe (if its not already displayed).
*/
_loadUrl: function(url) {
var iframe = this.find('iframe');
if(iframe.attr('src') != url) {
iframe.addClass('loading').attr('src', url);
}
this.find('iframe').addClass('loading').attr('src', url);
return this;
},