<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Design Scale &#187; Uncategorized</title>
	<atom:link href="https://www.designscale.com.sg/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.designscale.com.sg</link>
	<description></description>
	<lastBuildDate>Wed, 22 Apr 2026 19:42:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>DESIGNSCALE IN SQUAREROOMS, ISSUE 107 BY DESIGNSCALE, 7 MAR 2014</title>
		<link>https://www.designscale.com.sg/designscale-in-squarerooms-3/</link>
		<comments>https://www.designscale.com.sg/designscale-in-squarerooms-3/#comments</comments>
		<pubDate>Tue, 14 Oct 2014 05:38:34 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://localhost/interior3/?p=1</guid>
		<description><![CDATA[					<style type="text/css">
						li.opn-active-menu {
						    background: rgb(241, 241, 241) !important;
						}
						li.opn-active-menu a {
						    color: #333 !important;
						}
					</style>
					<script type="text/javascript">

						/*
						 * 	- 	Add VC_Row classes [with - support theme]
						 *  - 	Add Active Menu class
						 *-------------------------------------------------------------*/
						;(function ( $, window, undefined ) {
							var pluginName = 'OPN_Scroll',
							    document = window.document,
							    defaults = {
									vc_version: parseFloat('4.6'),
									activeItem: 'opn_active_menu',
									rowClass: 'vc_row',
									active: '',
									firstItem: false,
							    };

							function opn( element, options ) {
							  this.element = element;
							  this.options = $.extend( {}, defaults, options) ;
							  this._defaults = defaults;
							  this._name = pluginName;
							  this.init();
							}
						  	opn.prototype.init = function () {
							    var self = this;
							    var p = self._defaults;
							    var ac = p.activeItem;

							    //	Add active class
							    $('a[href*=#]:not([href=#])').bind('click touchstart', function(){
									$(this).parent('li').siblings().removeClass( ac );
									$(this).parent('li').addClass( ac );
								});

								if(typeof p.rowClass != 'undefined' && p.rowClass != null) {

									//	Add THEME Support for VC ROW ID from OPN
							        $('.opn-row-pre-element').each(function(index, el) {
									    var id = $(el).attr('data-id');
									    var gutter = $(el).attr('data-gutter');
									    var opn_enable_overlay = $(el).attr('data-opn_enable_overlay') || '';
									    var opn_hide_navigation = $(el).attr('data-opn_hide_navigation') || '';

									    //	set VC row class from user
									    var $row = $(el).prevAll('.'+p.rowClass+':first');
									    
									    $row.attr('data-op-gutter', gutter);
									    $row.attr('data-opn_enable_overlay', opn_enable_overlay);
									    $row.attr('data-opn_hide_navigation', opn_hide_navigation);
									    if (id != '') {
									    	//	Add ID for VC version <= 4.4
									    	/*if( parseFloat(p.vc_version) <= parseFloat(4.4) ) {*/
									    		//	Check VC version 4.5 set ROW ID
									    		//	if not found set OPN ID for row.

									    		/* 	Does not check VC version or Row has ID.
									    		 * 	Add ID for row Either VC or OPN.
									    		 * 	To fix theme ID's issue.
									    		 *------------------------------------------------------------*/
									    		var hasID = $row.attr('id') || '';
									    		if(hasID === 'undefined' || hasID === null || hasID==='') {
										        	$row.attr('id', id);
									    		}
									    	/*}*/
									    }
									    $(el).remove();
									});

							        //  Apply for 1 Scroll
									setTimeout(function(){
										$('.'+p.rowClass).each( function(index, elem) {
											var id = $(elem).attr('id') || null;
											if(typeof id!= 'undefined' && id != null) {

							                    // 	Get fist Item
							                    if( p.firstItem == false ) {
							                    	p.firstItem = id;
							                    	$('#'+p.firstItem).addClass('opn-active');
							                    	$('#'+p.firstItem).parent().addClass('opn-row-container');
							                    }
											}
										});
							        },700);
								}
	  						};
							$.fn[pluginName] = function ( options ) {
								return this.each(function () {
									if (!$.data(this, 'plugin_' + pluginName)) {
										$.data(this, 'plugin_' + pluginName, new opn( this, options ));
									}
								});
							}
							$(document).ready(function() {

								$('body').OPN_Scroll();

								//	on Visit Scroll to # link
								var opn_jump = function(e)
						        {
						        	var target = 'undefined';

						            if (e)
						            {
						                e.preventDefault();
						                if( !$(this).hasClass('.ui-tabs-anchor') ) {
						                	target = $(this).attr("href");
						                }
						            } else
						            {
						                target = location.hash;
						            }
						            if (typeof target === 'undefined' || target === '')
						                return false;
						            var gutter = $(target).attr('data-op-gutter');
						            if (typeof gutter === 'undefined')
						                gutter = 0;

						            $(target).animatescroll({
						                scrollSpeed: 1000,
						                easing: 'easeOutQuad',
						                padding: gutter
						            });
						            location.hash = target;
						            $(window).load(function(){
						                setTimeout(function(){
						                     $(target).animatescroll({
						                        scrollSpeed: 1000,
						                        easing: 'easeOutQuad',
						                        padding: gutter
						                    });
						                },500);
						            });
						        }

                                opn_jump();

                                //  Add EXCLUDE - Classes & ID's
                                $('.ui-tabs-anchor').addClass('opn-exclude');

                                /*
                                 *  on Click / Touch
                                 *--------------------------------------------------------*/
                                // For menu it will works
                                $("a[href*=#]:not('.opn-exclude')").bind('click touchstart', function(){
                                    if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {
                                        var target  = $(this.hash);
                                        target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
                                        if (target.length) {
                                            var id = this.hash.slice(1);
                                            var gutter = $('#' + id).attr('data-op-gutter') || 0;

                                            $('#' + id).animatescroll({
                                                scrollSpeed: 1000,
                                                easing: "easeOutQuad",
                                                padding: gutter
                                            });
                                            return false;
                                        }
                                    }
                                });

							});
                            
					        $(document).on('click touchstart', "a[href*=#]:not('.opn-exclude')", function(e) {
					        //$(document).on('click touchstart', 'a[href*=#]:not([href=#]), a[href*=#]:not(".ui-tabs-anchor")', function(e) {
						        if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {
						            var target  = $(this.hash);

						            target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
						            if (target.length) {

						            	var scroll_speed = 1000;
						                var scroll_effect = "easeOutQuad";
						                var id = this.hash.slice(1);
						                // Above settings works JUST for - One Page Navigator - Menu
						                var i = p = '';
						                $('.opn_fixed .opn_list').each(function(index, element) {
						                    var anch = $(element).find('a');
						                    anch.each(function(ind, elm) {
						                        var a = $(elm).attr('href');

						                        if(typeof a !== 'undefined' && a != null) {
						                            ind = a.split('#')[1];
						                            if(id == ind) {
						                                p = $(elm).parent().parent();
						                                scroll_speed = p.attr('data-scroll_speed') || 1000;
						                                scroll_effect = p.attr('data-scroll_effect') || "easeOutQuad";
						                            }
						                        }
						                    });
						                });
						                
						                var gutter = $('#' + id).attr('data-op-gutter') || 0;
						                scroll_speed = parseInt(scroll_speed);

						                $('#' + id).animatescroll({
						                    scrollSpeed: scroll_speed,
						                    easing: scroll_effect,
						                    padding: gutter
						                });
						                return false;
						            }
						        }
						    });

						}(jQuery, window));
				</script>
			Designscale is in Squarerooms magazine, a reno magaine with latest and hottest tips and ideas on complete home makeovers, from practical renovation solutions, rooms styles to comparison shopping on furnishings.]]></description>
						<style type="text/css">
						li.opn-active-menu {
						    background: rgb(241, 241, 241) !important;
						}
						li.opn-active-menu a {
						    color: #333 !important;
						}
					</style>
					<script type="text/javascript">

						/*
						 * 	- 	Add VC_Row classes [with - support theme]
						 *  - 	Add Active Menu class
						 *-------------------------------------------------------------*/
						;(function ( $, window, undefined ) {
							var pluginName = 'OPN_Scroll',
							    document = window.document,
							    defaults = {
									vc_version: parseFloat('4.6'),
									activeItem: 'opn_active_menu',
									rowClass: 'vc_row',
									active: '',
									firstItem: false,
							    };

							function opn( element, options ) {
							  this.element = element;
							  this.options = $.extend( {}, defaults, options) ;
							  this._defaults = defaults;
							  this._name = pluginName;
							  this.init();
							}
						  	opn.prototype.init = function () {
							    var self = this;
							    var p = self._defaults;
							    var ac = p.activeItem;

							    //	Add active class
							    $('a[href*=#]:not([href=#])').bind('click touchstart', function(){
									$(this).parent('li').siblings().removeClass( ac );
									$(this).parent('li').addClass( ac );
								});

								if(typeof p.rowClass != 'undefined' && p.rowClass != null) {

									//	Add THEME Support for VC ROW ID from OPN
							        $('.opn-row-pre-element').each(function(index, el) {
									    var id = $(el).attr('data-id');
									    var gutter = $(el).attr('data-gutter');
									    var opn_enable_overlay = $(el).attr('data-opn_enable_overlay') || '';
									    var opn_hide_navigation = $(el).attr('data-opn_hide_navigation') || '';

									    //	set VC row class from user
									    var $row = $(el).prevAll('.'+p.rowClass+':first');
									    
									    $row.attr('data-op-gutter', gutter);
									    $row.attr('data-opn_enable_overlay', opn_enable_overlay);
									    $row.attr('data-opn_hide_navigation', opn_hide_navigation);
									    if (id != '') {
									    	//	Add ID for VC version <= 4.4
									    	/*if( parseFloat(p.vc_version) <= parseFloat(4.4) ) {*/
									    		//	Check VC version 4.5 set ROW ID
									    		//	if not found set OPN ID for row.

									    		/* 	Does not check VC version or Row has ID.
									    		 * 	Add ID for row Either VC or OPN.
									    		 * 	To fix theme ID's issue.
									    		 *------------------------------------------------------------*/
									    		var hasID = $row.attr('id') || '';
									    		if(hasID === 'undefined' || hasID === null || hasID==='') {
										        	$row.attr('id', id);
									    		}
									    	/*}*/
									    }
									    $(el).remove();
									});

							        //  Apply for 1 Scroll
									setTimeout(function(){
										$('.'+p.rowClass).each( function(index, elem) {
											var id = $(elem).attr('id') || null;
											if(typeof id!= 'undefined' && id != null) {

							                    // 	Get fist Item
							                    if( p.firstItem == false ) {
							                    	p.firstItem = id;
							                    	$('#'+p.firstItem).addClass('opn-active');
							                    	$('#'+p.firstItem).parent().addClass('opn-row-container');
							                    }
											}
										});
							        },700);
								}
	  						};
							$.fn[pluginName] = function ( options ) {
								return this.each(function () {
									if (!$.data(this, 'plugin_' + pluginName)) {
										$.data(this, 'plugin_' + pluginName, new opn( this, options ));
									}
								});
							}
							$(document).ready(function() {

								$('body').OPN_Scroll();

								//	on Visit Scroll to # link
								var opn_jump = function(e)
						        {
						        	var target = 'undefined';

						            if (e)
						            {
						                e.preventDefault();
						                if( !$(this).hasClass('.ui-tabs-anchor') ) {
						                	target = $(this).attr("href");
						                }
						            } else
						            {
						                target = location.hash;
						            }
						            if (typeof target === 'undefined' || target === '')
						                return false;
						            var gutter = $(target).attr('data-op-gutter');
						            if (typeof gutter === 'undefined')
						                gutter = 0;

						            $(target).animatescroll({
						                scrollSpeed: 1000,
						                easing: 'easeOutQuad',
						                padding: gutter
						            });
						            location.hash = target;
						            $(window).load(function(){
						                setTimeout(function(){
						                     $(target).animatescroll({
						                        scrollSpeed: 1000,
						                        easing: 'easeOutQuad',
						                        padding: gutter
						                    });
						                },500);
						            });
						        }

                                opn_jump();

                                //  Add EXCLUDE - Classes & ID's
                                $('.ui-tabs-anchor').addClass('opn-exclude');

                                /*
                                 *  on Click / Touch
                                 *--------------------------------------------------------*/
                                // For menu it will works
                                $("a[href*=#]:not('.opn-exclude')").bind('click touchstart', function(){
                                    if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {
                                        var target  = $(this.hash);
                                        target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
                                        if (target.length) {
                                            var id = this.hash.slice(1);
                                            var gutter = $('#' + id).attr('data-op-gutter') || 0;

                                            $('#' + id).animatescroll({
                                                scrollSpeed: 1000,
                                                easing: "easeOutQuad",
                                                padding: gutter
                                            });
                                            return false;
                                        }
                                    }
                                });

							});
                            
					        $(document).on('click touchstart', "a[href*=#]:not('.opn-exclude')", function(e) {
					        //$(document).on('click touchstart', 'a[href*=#]:not([href=#]), a[href*=#]:not(".ui-tabs-anchor")', function(e) {
						        if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {
						            var target  = $(this.hash);

						            target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
						            if (target.length) {

						            	var scroll_speed = 1000;
						                var scroll_effect = "easeOutQuad";
						                var id = this.hash.slice(1);
						                // Above settings works JUST for - One Page Navigator - Menu
						                var i = p = '';
						                $('.opn_fixed .opn_list').each(function(index, element) {
						                    var anch = $(element).find('a');
						                    anch.each(function(ind, elm) {
						                        var a = $(elm).attr('href');

						                        if(typeof a !== 'undefined' && a != null) {
						                            ind = a.split('#')[1];
						                            if(id == ind) {
						                                p = $(elm).parent().parent();
						                                scroll_speed = p.attr('data-scroll_speed') || 1000;
						                                scroll_effect = p.attr('data-scroll_effect') || "easeOutQuad";
						                            }
						                        }
						                    });
						                });
						                
						                var gutter = $('#' + id).attr('data-op-gutter') || 0;
						                scroll_speed = parseInt(scroll_speed);

						                $('#' + id).animatescroll({
						                    scrollSpeed: scroll_speed,
						                    easing: scroll_effect,
						                    padding: gutter
						                });
						                return false;
						            }
						        }
						    });

						}(jQuery, window));
				</script>
						<content:encoded><![CDATA[<p style="text-align: justify;">Designscale is in Squarerooms magazine, a reno magaine with latest and hottest tips and ideas on complete home makeovers, from practical renovation solutions, rooms styles to comparison shopping on furnishings.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.designscale.com.sg/designscale-in-squarerooms-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DESIGNSCALE IN SQUAREROOMS OCT ISSUE BY DESIGNSCALE, 14 OCT 2014</title>
		<link>https://www.designscale.com.sg/designscale-in-squarerooms/</link>
		<comments>https://www.designscale.com.sg/designscale-in-squarerooms/#comments</comments>
		<pubDate>Fri, 07 Mar 2014 08:31:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themes.leap13.com/attain/charity/?p=89</guid>
		<description><![CDATA[					<style type="text/css">
						li.opn-active-menu {
						    background: rgb(241, 241, 241) !important;
						}
						li.opn-active-menu a {
						    color: #333 !important;
						}
					</style>
					<script type="text/javascript">

						/*
						 * 	- 	Add VC_Row classes [with - support theme]
						 *  - 	Add Active Menu class
						 *-------------------------------------------------------------*/
						;(function ( $, window, undefined ) {
							var pluginName = 'OPN_Scroll',
							    document = window.document,
							    defaults = {
									vc_version: parseFloat('4.6'),
									activeItem: 'opn_active_menu',
									rowClass: 'vc_row',
									active: '',
									firstItem: false,
							    };

							function opn( element, options ) {
							  this.element = element;
							  this.options = $.extend( {}, defaults, options) ;
							  this._defaults = defaults;
							  this._name = pluginName;
							  this.init();
							}
						  	opn.prototype.init = function () {
							    var self = this;
							    var p = self._defaults;
							    var ac = p.activeItem;

							    //	Add active class
							    $('a[href*=#]:not([href=#])').bind('click touchstart', function(){
									$(this).parent('li').siblings().removeClass( ac );
									$(this).parent('li').addClass( ac );
								});

								if(typeof p.rowClass != 'undefined' && p.rowClass != null) {

									//	Add THEME Support for VC ROW ID from OPN
							        $('.opn-row-pre-element').each(function(index, el) {
									    var id = $(el).attr('data-id');
									    var gutter = $(el).attr('data-gutter');
									    var opn_enable_overlay = $(el).attr('data-opn_enable_overlay') || '';
									    var opn_hide_navigation = $(el).attr('data-opn_hide_navigation') || '';

									    //	set VC row class from user
									    var $row = $(el).prevAll('.'+p.rowClass+':first');
									    
									    $row.attr('data-op-gutter', gutter);
									    $row.attr('data-opn_enable_overlay', opn_enable_overlay);
									    $row.attr('data-opn_hide_navigation', opn_hide_navigation);
									    if (id != '') {
									    	//	Add ID for VC version <= 4.4
									    	/*if( parseFloat(p.vc_version) <= parseFloat(4.4) ) {*/
									    		//	Check VC version 4.5 set ROW ID
									    		//	if not found set OPN ID for row.

									    		/* 	Does not check VC version or Row has ID.
									    		 * 	Add ID for row Either VC or OPN.
									    		 * 	To fix theme ID's issue.
									    		 *------------------------------------------------------------*/
									    		var hasID = $row.attr('id') || '';
									    		if(hasID === 'undefined' || hasID === null || hasID==='') {
										        	$row.attr('id', id);
									    		}
									    	/*}*/
									    }
									    $(el).remove();
									});

							        //  Apply for 1 Scroll
									setTimeout(function(){
										$('.'+p.rowClass).each( function(index, elem) {
											var id = $(elem).attr('id') || null;
											if(typeof id!= 'undefined' && id != null) {

							                    // 	Get fist Item
							                    if( p.firstItem == false ) {
							                    	p.firstItem = id;
							                    	$('#'+p.firstItem).addClass('opn-active');
							                    	$('#'+p.firstItem).parent().addClass('opn-row-container');
							                    }
											}
										});
							        },700);
								}
	  						};
							$.fn[pluginName] = function ( options ) {
								return this.each(function () {
									if (!$.data(this, 'plugin_' + pluginName)) {
										$.data(this, 'plugin_' + pluginName, new opn( this, options ));
									}
								});
							}
							$(document).ready(function() {

								$('body').OPN_Scroll();

								//	on Visit Scroll to # link
								var opn_jump = function(e)
						        {
						        	var target = 'undefined';

						            if (e)
						            {
						                e.preventDefault();
						                if( !$(this).hasClass('.ui-tabs-anchor') ) {
						                	target = $(this).attr("href");
						                }
						            } else
						            {
						                target = location.hash;
						            }
						            if (typeof target === 'undefined' || target === '')
						                return false;
						            var gutter = $(target).attr('data-op-gutter');
						            if (typeof gutter === 'undefined')
						                gutter = 0;

						            $(target).animatescroll({
						                scrollSpeed: 1000,
						                easing: 'easeOutQuad',
						                padding: gutter
						            });
						            location.hash = target;
						            $(window).load(function(){
						                setTimeout(function(){
						                     $(target).animatescroll({
						                        scrollSpeed: 1000,
						                        easing: 'easeOutQuad',
						                        padding: gutter
						                    });
						                },500);
						            });
						        }

                                opn_jump();

                                //  Add EXCLUDE - Classes & ID's
                                $('.ui-tabs-anchor').addClass('opn-exclude');

                                /*
                                 *  on Click / Touch
                                 *--------------------------------------------------------*/
                                // For menu it will works
                                $("a[href*=#]:not('.opn-exclude')").bind('click touchstart', function(){
                                    if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {
                                        var target  = $(this.hash);
                                        target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
                                        if (target.length) {
                                            var id = this.hash.slice(1);
                                            var gutter = $('#' + id).attr('data-op-gutter') || 0;

                                            $('#' + id).animatescroll({
                                                scrollSpeed: 1000,
                                                easing: "easeOutQuad",
                                                padding: gutter
                                            });
                                            return false;
                                        }
                                    }
                                });

							});
                            
					        $(document).on('click touchstart', "a[href*=#]:not('.opn-exclude')", function(e) {
					        //$(document).on('click touchstart', 'a[href*=#]:not([href=#]), a[href*=#]:not(".ui-tabs-anchor")', function(e) {
						        if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {
						            var target  = $(this.hash);

						            target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
						            if (target.length) {

						            	var scroll_speed = 1000;
						                var scroll_effect = "easeOutQuad";
						                var id = this.hash.slice(1);
						                // Above settings works JUST for - One Page Navigator - Menu
						                var i = p = '';
						                $('.opn_fixed .opn_list').each(function(index, element) {
						                    var anch = $(element).find('a');
						                    anch.each(function(ind, elm) {
						                        var a = $(elm).attr('href');

						                        if(typeof a !== 'undefined' && a != null) {
						                            ind = a.split('#')[1];
						                            if(id == ind) {
						                                p = $(elm).parent().parent();
						                                scroll_speed = p.attr('data-scroll_speed') || 1000;
						                                scroll_effect = p.attr('data-scroll_effect') || "easeOutQuad";
						                            }
						                        }
						                    });
						                });
						                
						                var gutter = $('#' + id).attr('data-op-gutter') || 0;
						                scroll_speed = parseInt(scroll_speed);

						                $('#' + id).animatescroll({
						                    scrollSpeed: scroll_speed,
						                    easing: scroll_effect,
						                    padding: gutter
						                });
						                return false;
						            }
						        }
						    });

						}(jQuery, window));
				</script>
			Deignscale participate advertisement in the Squarerooms October issue, a new refresh content with auditor review, inspiring the concept of our design and define the material, style and layout of this project.]]></description>
						<style type="text/css">
						li.opn-active-menu {
						    background: rgb(241, 241, 241) !important;
						}
						li.opn-active-menu a {
						    color: #333 !important;
						}
					</style>
					<script type="text/javascript">

						/*
						 * 	- 	Add VC_Row classes [with - support theme]
						 *  - 	Add Active Menu class
						 *-------------------------------------------------------------*/
						;(function ( $, window, undefined ) {
							var pluginName = 'OPN_Scroll',
							    document = window.document,
							    defaults = {
									vc_version: parseFloat('4.6'),
									activeItem: 'opn_active_menu',
									rowClass: 'vc_row',
									active: '',
									firstItem: false,
							    };

							function opn( element, options ) {
							  this.element = element;
							  this.options = $.extend( {}, defaults, options) ;
							  this._defaults = defaults;
							  this._name = pluginName;
							  this.init();
							}
						  	opn.prototype.init = function () {
							    var self = this;
							    var p = self._defaults;
							    var ac = p.activeItem;

							    //	Add active class
							    $('a[href*=#]:not([href=#])').bind('click touchstart', function(){
									$(this).parent('li').siblings().removeClass( ac );
									$(this).parent('li').addClass( ac );
								});

								if(typeof p.rowClass != 'undefined' && p.rowClass != null) {

									//	Add THEME Support for VC ROW ID from OPN
							        $('.opn-row-pre-element').each(function(index, el) {
									    var id = $(el).attr('data-id');
									    var gutter = $(el).attr('data-gutter');
									    var opn_enable_overlay = $(el).attr('data-opn_enable_overlay') || '';
									    var opn_hide_navigation = $(el).attr('data-opn_hide_navigation') || '';

									    //	set VC row class from user
									    var $row = $(el).prevAll('.'+p.rowClass+':first');
									    
									    $row.attr('data-op-gutter', gutter);
									    $row.attr('data-opn_enable_overlay', opn_enable_overlay);
									    $row.attr('data-opn_hide_navigation', opn_hide_navigation);
									    if (id != '') {
									    	//	Add ID for VC version <= 4.4
									    	/*if( parseFloat(p.vc_version) <= parseFloat(4.4) ) {*/
									    		//	Check VC version 4.5 set ROW ID
									    		//	if not found set OPN ID for row.

									    		/* 	Does not check VC version or Row has ID.
									    		 * 	Add ID for row Either VC or OPN.
									    		 * 	To fix theme ID's issue.
									    		 *------------------------------------------------------------*/
									    		var hasID = $row.attr('id') || '';
									    		if(hasID === 'undefined' || hasID === null || hasID==='') {
										        	$row.attr('id', id);
									    		}
									    	/*}*/
									    }
									    $(el).remove();
									});

							        //  Apply for 1 Scroll
									setTimeout(function(){
										$('.'+p.rowClass).each( function(index, elem) {
											var id = $(elem).attr('id') || null;
											if(typeof id!= 'undefined' && id != null) {

							                    // 	Get fist Item
							                    if( p.firstItem == false ) {
							                    	p.firstItem = id;
							                    	$('#'+p.firstItem).addClass('opn-active');
							                    	$('#'+p.firstItem).parent().addClass('opn-row-container');
							                    }
											}
										});
							        },700);
								}
	  						};
							$.fn[pluginName] = function ( options ) {
								return this.each(function () {
									if (!$.data(this, 'plugin_' + pluginName)) {
										$.data(this, 'plugin_' + pluginName, new opn( this, options ));
									}
								});
							}
							$(document).ready(function() {

								$('body').OPN_Scroll();

								//	on Visit Scroll to # link
								var opn_jump = function(e)
						        {
						        	var target = 'undefined';

						            if (e)
						            {
						                e.preventDefault();
						                if( !$(this).hasClass('.ui-tabs-anchor') ) {
						                	target = $(this).attr("href");
						                }
						            } else
						            {
						                target = location.hash;
						            }
						            if (typeof target === 'undefined' || target === '')
						                return false;
						            var gutter = $(target).attr('data-op-gutter');
						            if (typeof gutter === 'undefined')
						                gutter = 0;

						            $(target).animatescroll({
						                scrollSpeed: 1000,
						                easing: 'easeOutQuad',
						                padding: gutter
						            });
						            location.hash = target;
						            $(window).load(function(){
						                setTimeout(function(){
						                     $(target).animatescroll({
						                        scrollSpeed: 1000,
						                        easing: 'easeOutQuad',
						                        padding: gutter
						                    });
						                },500);
						            });
						        }

                                opn_jump();

                                //  Add EXCLUDE - Classes & ID's
                                $('.ui-tabs-anchor').addClass('opn-exclude');

                                /*
                                 *  on Click / Touch
                                 *--------------------------------------------------------*/
                                // For menu it will works
                                $("a[href*=#]:not('.opn-exclude')").bind('click touchstart', function(){
                                    if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {
                                        var target  = $(this.hash);
                                        target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
                                        if (target.length) {
                                            var id = this.hash.slice(1);
                                            var gutter = $('#' + id).attr('data-op-gutter') || 0;

                                            $('#' + id).animatescroll({
                                                scrollSpeed: 1000,
                                                easing: "easeOutQuad",
                                                padding: gutter
                                            });
                                            return false;
                                        }
                                    }
                                });

							});
                            
					        $(document).on('click touchstart', "a[href*=#]:not('.opn-exclude')", function(e) {
					        //$(document).on('click touchstart', 'a[href*=#]:not([href=#]), a[href*=#]:not(".ui-tabs-anchor")', function(e) {
						        if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {
						            var target  = $(this.hash);

						            target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
						            if (target.length) {

						            	var scroll_speed = 1000;
						                var scroll_effect = "easeOutQuad";
						                var id = this.hash.slice(1);
						                // Above settings works JUST for - One Page Navigator - Menu
						                var i = p = '';
						                $('.opn_fixed .opn_list').each(function(index, element) {
						                    var anch = $(element).find('a');
						                    anch.each(function(ind, elm) {
						                        var a = $(elm).attr('href');

						                        if(typeof a !== 'undefined' && a != null) {
						                            ind = a.split('#')[1];
						                            if(id == ind) {
						                                p = $(elm).parent().parent();
						                                scroll_speed = p.attr('data-scroll_speed') || 1000;
						                                scroll_effect = p.attr('data-scroll_effect') || "easeOutQuad";
						                            }
						                        }
						                    });
						                });
						                
						                var gutter = $('#' + id).attr('data-op-gutter') || 0;
						                scroll_speed = parseInt(scroll_speed);

						                $('#' + id).animatescroll({
						                    scrollSpeed: scroll_speed,
						                    easing: scroll_effect,
						                    padding: gutter
						                });
						                return false;
						            }
						        }
						    });

						}(jQuery, window));
				</script>
						<content:encoded><![CDATA[<p style="text-align: justify;">Deignscale participate advertisement in the Squarerooms October issue, a new refresh content with auditor review, inspiring the concept of our design and define the material, style and layout of this project.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.designscale.com.sg/designscale-in-squarerooms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
