Last active
September 30, 2015 19:19
-
-
Save notacouch/2e1e2edc99c3492bf587 to your computer and use it in GitHub Desktop.
jQuery Live Preview Drupal Admin Links
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Load latest jQuery, jQuery Live Preview plugin, apply to appropriate links | |
| if (typeof jQuery.prototype.on === 'undefined') { | |
| // Load external CSS with jQuery 1.4.4 | |
| // credit: | |
| // @link http://stackoverflow.com/a/2685661/781824 | |
| jQuery("<link/>", { | |
| id: "jquery-live-preview-css", | |
| rel: "stylesheet", | |
| type: "text/css", | |
| href: "https://cdn.rawgit.com/alanphoon/jquery-live-preview/master/css/livepreview-demo.css?v1.1.0" | |
| }).appendTo("head"); | |
| old_jQuery = window.jQuery; | |
| delete jQuery; | |
| old_jQuery.getScript("https://code.jquery.com/jquery-2.1.4.min.js", function(){ | |
| jQuery.getScript("https://cdn.rawgit.com/alanphoon/jquery-live-preview/master/js/jquery-live-preview.min.js?v1.1.0", function() { | |
| jQuery('.views-field-title a').livePreview({targetWidth: 1200, targetHeight: 1500, scale: .333, viewWidth: 400, viewHeight: 500}); | |
| }); | |
| }); | |
| } else { | |
| jQuery('.views-field-title a').livePreview({targetWidth: 1200, targetHeight: 1500, scale: .333, viewWidth: 400, viewHeight: 500}); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bookmarklet via Bookmarklet Crunchinator:
javascript:(function(){if(typeof jQuery.prototype.on==='undefined'){jQuery("<link/>",{id:"jquery-live-preview-css",rel:"stylesheet",type:"text/css",href:"https://cdn.rawgit.com/alanphoon/jquery-live-preview/master/css/livepreview-demo.css?v1.1.0"}).appendTo("head");old_jQuery=window.jQuery;delete jQuery;old_jQuery.getScript("https://code.jquery.com/jquery-2.1.4.min.js",function(){jQuery.getScript("https://cdn.rawgit.com/alanphoon/jquery-live-preview/master/js/jquery-live-preview.min.js?v1.1.0",function(){jQuery('.views-field-title a').livePreview({targetWidth:1200,targetHeight:1500,scale:.333,viewWidth:400,viewHeight:500});});});}else{jQuery('.views-field-title a').livePreview({targetWidth:1200,targetHeight:1500,scale:.333,viewWidth:400,viewHeight:500});}})();