PluginProbe
Property Hive / 1.4.5
Property Hive v1.4.5
2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 1.4.61 All 261 releases
propertyhive / assets / js / frontend / actions.js

actions.js in Property Hive 1.4.5, at assets/js/frontend/actions.js

21 lines 483 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery( function($){
2
3 // Floorplans lightbox
4 $('.action-floorplans a').click(function()
5 {
6 var floorplan_urls = $(this).attr('data-floorplan-urls');
7 if (floorplan_urls != '')
8 {
9 floorplan_urls = floorplan_urls.split("|");
10
11 $.prettyPhoto.open(floorplan_urls);
12 }
13 else
14 {
15 alert("No floorplans exist for this property");
16 }
17
18 return false;
19 });
20
21 });